-
-
Notifications
You must be signed in to change notification settings - Fork 824
/
Log.php
60 lines (54 loc) · 1.82 KB
/
Log.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
<?php
/*
+--------------------------------------------------------------------+
| Copyright CiviCRM LLC. All rights reserved. |
| |
| This work is published under the GNU AGPLv3 license with some |
| permitted exceptions and without any warranty. For full license |
| and copyright information, see https://civicrm.org/licensing |
+--------------------------------------------------------------------+
*/
/**
* Class CRM_Core_Error_Log
*
* A PSR-3 wrapper for CRM_Core_Error.
*/
class CRM_Core_Error_Log extends \Psr\Log\AbstractLogger {
/**
* @var array
*/
public $map;
/**
* CRM_Core_Error_Log constructor.
*/
public function __construct() {
$this->map = [
\Psr\Log\LogLevel::DEBUG => PEAR_LOG_DEBUG,
\Psr\Log\LogLevel::INFO => PEAR_LOG_INFO,
\Psr\Log\LogLevel::NOTICE => PEAR_LOG_NOTICE,
\Psr\Log\LogLevel::WARNING => PEAR_LOG_WARNING,
\Psr\Log\LogLevel::ERROR => PEAR_LOG_ERR,
\Psr\Log\LogLevel::CRITICAL => PEAR_LOG_CRIT,
\Psr\Log\LogLevel::ALERT => PEAR_LOG_ALERT,
\Psr\Log\LogLevel::EMERGENCY => PEAR_LOG_EMERG,
];
}
/**
* Logs with an arbitrary level.
*
* @param mixed $level
* @param string $message
* @param array $context
*/
public function log($level, $message, array $context = []) {
// FIXME: This flattens a $context a bit prematurely. When integrating
// with external/CMS logs, we should pass through $context.
if (!empty($context)) {
if (isset($context['exception'])) {
$context['exception'] = CRM_Core_Error::formatTextException($context['exception']);
}
$message .= "\n" . print_r($context, 1);
}
CRM_Core_Error::debug_log_message($message, FALSE, '', $this->map[$level]);
}
}