forked from woocommerce/woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass-wc-logger.php
210 lines (188 loc) · 4.34 KB
/
class-wc-logger.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* Provides logging capabilities for debugging purposes.
*
* @class WC_Logger
* @version 2.0.0
* @package WooCommerce/Classes
* @category Class
* @author WooThemes
*/
class WC_Logger {
/**
* Log Levels
*
* @see @link {https://tools.ietf.org/html/rfc5424}
*/
const DEBUG = 'debug';
const INFO = 'info';
const NOTICE = 'notice';
const WARNING = 'warning';
const ERROR = 'error';
const CRITICAL = 'critical';
const ALERT = 'alert';
const EMERGENCY = 'emergency';
/**
* Stores registered log handlers.
*
* @var array
* @access private
*/
private $handlers;
private static $valid_levels = array(
self::DEBUG,
self::INFO,
self::NOTICE,
self::WARNING,
self::ERROR,
self::CRITICAL,
self::ALERT,
self::EMERGENCY,
);
/**
* Constructor for the logger.
*/
public function __construct() {
$handlers = apply_filters( 'woocommerce_register_log_handlers', array() );
$this->handlers = $handlers;
}
/**
* Add a log entry.
*
* @deprecated since 2.0.0
*
* @param string $handle
* @param string $message
*
* @return bool
*/
public function add( $handle, $message ) {
_deprecated_function( 'WC_Logger::add', '2.8', 'WC_Logger::log' );
$message = apply_filters( 'woocommerce_logger_add_message', $message, $handle );
$this->log( self::INFO, $message, array( 'tag' => $handle, '_legacy' => true ) );
wc_do_deprecated_action( 'woocommerce_log_add', array( $handle, $message ), '2.8', 'This action has been deprecated with no alternative.' );
return true;
}
/**
* Add a log entry.
*
* @param string $level emergency|alert|critical|error|warning|notice|info|debug
* @param string $message
* @param array $context {
* Optional. Additional information for log handlers.
*
* @type string $tag Optional. May be used by log handlers to sort messages.
* }
*/
public function log( $level, $message, $context = array() ) {
if ( ! in_array( $level, self::$valid_levels ) ) {
$class = __CLASS__;
$method = __FUNCTION__;
_doing_it_wrong( "{$class}::{$method}", sprintf( __( 'WC_Logger::log was called with an invalid level "%s".', 'woocommerce' ), $level ), '2.8' );
}
$timestamp = current_time( 'timestamp' );
foreach ( $this->handlers as $handler ) {
$continue = $handler->handle( $level, $timestamp, $message, $context );
if ( false === $continue ) {
break;
}
}
}
/**
* Adds an emergency level message.
*
* @see WC_Logger::log
*
*/
public function emergency( $message, $context = array() ) {
$this->log( self::EMERGENCY, $message, $context );
}
/**
* Adds an alert level message.
*
* @see WC_Logger::log
*
*/
public function alert( $message, $context = array() ) {
$this->log( self::ALERT, $message, $context );
}
/**
* Adds a critical level message.
*
* @see WC_Logger::log
*
*/
public function critical( $message, $context = array() ) {
$this->log( self::CRITICAL, $message, $context );
}
/**
* Adds an error level message.
*
* @see WC_Logger::log
*
*/
public function error( $message, $context = array() ) {
$this->log( self::ERROR, $message, $context );
}
/**
* Adds a warning level message.
*
* @see WC_Logger::log
*
*/
public function warning( $message, $context = array() ) {
$this->log( self::WARNING, $message, $context );
}
/**
* Adds a notice level message.
*
* @see WC_Logger::log
*
*/
public function notice( $message, $context = array() ) {
$this->log( self::NOTICE, $message, $context );
}
/**
* Adds a info level message.
*
* @see WC_Logger::log
*
*/
public function info( $message, $context = array() ) {
$this->log( self::INFO, $message, $context );
}
/**
* Adds a debug level message.
*
* @see WC_Logger::log
*
*/
public function debug( $message, $context = array() ) {
$this->log( self::DEBUG, $message, $context );
}
/**
* Clear entries from chosen file.
*
* @deprecated since 2.0.0
*
* @return bool
*/
public function clear() {
_deprecated_function( 'WC_Logger::clear', '2.8' );
return false;
}
/**
* Remove/delete the chosen file.
*
* @deprecated since 2.0.0
*
* @return bool
*/
public function remove() {
_deprecated_function( 'WC_Logger::remove', '2.8' );
return false;
}
}