관리-도구
편집 파일: PayPalLoggingLevel.php
<?php namespace PayPal\Core; /** * Logging Levels. * Class containing all the constants for Logging Levels. */ class PayPalLoggingLevel { // DEBUG Logging Level const DEBUG = 4; // FINE Logging Level const FINE = 3; // INFO Logging Level const INFO = 2; // WARN Logging Level const WARN = 1; // ERROR Logging Level const ERROR = 0; }