1 | <?php |
||
19 | class Logger |
||
20 | { |
||
21 | /** |
||
22 | * @var resource |
||
23 | */ |
||
24 | private $handle; |
||
25 | |||
26 | /** |
||
27 | * @var resource |
||
28 | */ |
||
29 | private $warnHandle; |
||
30 | |||
31 | /** |
||
32 | * @var resource |
||
33 | */ |
||
34 | private $errorHandle; |
||
35 | |||
36 | /** |
||
37 | * @var string |
||
38 | */ |
||
39 | private $storageDir; |
||
40 | |||
41 | /** |
||
42 | * @var string |
||
43 | */ |
||
44 | private static $remoteIp; |
||
45 | |||
46 | /** |
||
47 | * @var string |
||
48 | */ |
||
49 | private static $script; |
||
50 | |||
51 | /** |
||
52 | * @param string $remoteIp |
||
53 | * @param string $script |
||
54 | */ |
||
55 | public static function setup($remoteIp, $script) |
||
60 | |||
61 | /** |
||
62 | * @param string $localeStorageDir Use better the local TMP dir or dir with mod 777. |
||
63 | */ |
||
64 | public function __construct($localeStorageDir) |
||
68 | |||
69 | /** |
||
70 | * @throws \RuntimeException If something went wrong on creating the log dir and file. |
||
71 | */ |
||
72 | public function init() |
||
89 | |||
90 | /** |
||
91 | * @param string $msg |
||
92 | * |
||
93 | * @return Logger |
||
94 | */ |
||
95 | public function debug($msg) |
||
103 | |||
104 | /** |
||
105 | * @param string $msg |
||
106 | * |
||
107 | * @return Logger |
||
108 | */ |
||
109 | public function warn($msg) |
||
117 | |||
118 | /** |
||
119 | * @param string $msg |
||
120 | * |
||
121 | * @return Logger |
||
122 | */ |
||
123 | public function error($msg) |
||
129 | |||
130 | /** |
||
131 | * @param string $msg |
||
132 | * |
||
133 | * @return Logger |
||
134 | */ |
||
135 | public function info($msg) |
||
143 | |||
144 | /** |
||
145 | * @param string $msg |
||
146 | * @param string $severity |
||
147 | */ |
||
148 | protected function write($msg, $severity = 'DEBUG') |
||
161 | |||
162 | public function __destruct() |
||
177 | |||
178 | /** |
||
179 | * Formats the error message in representable manner. |
||
180 | * |
||
181 | * @param string $message |
||
182 | * @param string $severity |
||
183 | * |
||
184 | * @return string |
||
185 | */ |
||
186 | private function format($message, $severity) |
||
211 | |||
212 | /** |
||
213 | * @param string $varname |
||
214 | * |
||
215 | * @return bool |
||
216 | */ |
||
217 | protected function iniGetBool($varname) |
||
233 | } |
||
234 |