forked from LiveCarta/PayPal-PHP-SDK
- Logging Level DEBUG introduced - Logging Level FINE deprecated to INFO - Logging Level restricted to INFO in live environments - Warning on using DEBUG in live environments - Fixes #215. Not Entirely, but one step ahead
27 lines
384 B
PHP
27 lines
384 B
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;
|
|
}
|