本文整理汇总了PHP中Piwik\Log::getMonologLevel方法的典型用法代码示例。如果您正苦于以下问题:PHP Log::getMonologLevel方法的具体用法?PHP Log::getMonologLevel怎么用?PHP Log::getMonologLevel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Piwik\Log
的用法示例。
在下文中一共展示了Log::getMonologLevel方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
return array();
}
$classes = $c->get('log.handler.classes');
$writerNames = array_map('trim', $writerNames);
$writers = array();
foreach ($writerNames as $writerName) {
if (isset($classes[$writerName])) {
$writers[$writerName] = $c->get($classes[$writerName]);
}
}
return array_values($writers);
}), 'log.processors' => array(DI\get('Piwik\\Plugins\\Monolog\\Processor\\SprintfProcessor'), DI\get('Piwik\\Plugins\\Monolog\\Processor\\ClassNameProcessor'), DI\get('Piwik\\Plugins\\Monolog\\Processor\\RequestIdProcessor'), DI\get('Piwik\\Plugins\\Monolog\\Processor\\ExceptionToTextProcessor'), DI\get('Monolog\\Processor\\PsrLogMessageProcessor'), DI\get('Piwik\\Plugins\\Monolog\\Processor\\TokenProcessor')), 'Piwik\\Plugins\\Monolog\\Handler\\FileHandler' => DI\object()->constructor(DI\get('log.file.filename'), DI\get('log.level'))->method('setFormatter', DI\get('log.lineMessageFormatter.file')), 'log.lineMessageFormatter.file' => DI\object('Piwik\\Plugins\\Monolog\\Formatter\\LineMessageFormatter')->constructorParameter('allowInlineLineBreaks', false), 'Piwik\\Plugins\\Monolog\\Handler\\DatabaseHandler' => DI\object()->constructor(DI\get('log.level'))->method('setFormatter', DI\get('Piwik\\Plugins\\Monolog\\Formatter\\LineMessageFormatter')), 'Piwik\\Plugins\\Monolog\\Handler\\WebNotificationHandler' => DI\object()->constructor(DI\get('log.level'))->method('setFormatter', DI\get('Piwik\\Plugins\\Monolog\\Formatter\\LineMessageFormatter')), 'log.level' => DI\factory(function (ContainerInterface $c) {
if ($c->has('ini.log.log_level')) {
$level = strtoupper($c->get('ini.log.log_level'));
if (!empty($level) && defined('Piwik\\Log::' . strtoupper($level))) {
return Log::getMonologLevel(constant('Piwik\\Log::' . strtoupper($level)));
}
}
return Logger::WARNING;
}), 'log.file.filename' => DI\factory(function (ContainerInterface $c) {
$logPath = $c->get('ini.log.logger_file_path');
// Absolute path
if (strpos($logPath, '/') === 0) {
return $logPath;
}
// Remove 'tmp/' at the beginning
if (strpos($logPath, 'tmp/') === 0) {
$logPath = substr($logPath, strlen('tmp'));
}
if (empty($logPath)) {
// Default log file