blob: 4493e6f64f861633b58c3eb9ac7adc43e1754656 (
plain)
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
|
<?php
/**
* TLogRouter, TLogRoute, TFileLogRoute, TEmailLogRoute class file
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @link http://www.pradosoft.com/
* @copyright Copyright © 2005-2014 PradoSoft
* @license http://www.pradosoft.com/license/
* @package System.Util
*/
/**
* TFirebugLogRoute class.
*
* TFirebugLogRoute prints selected log messages in the firebug log console.
*
* {@link http://www.getfirebug.com/ FireBug Website}
*
* @author Enrico Stahn <mail@enricostahn.com>, Christophe Boulain <Christophe.Boulain@gmail.com>
* @package System.Util
* @since 3.1.2
*/
class TFirebugLogRoute extends TBrowserLogRoute
{
protected function renderHeader ()
{
$string = <<<EOD
<script type="text/javascript">
/*<![CDATA[*/
if (typeof(console) == 'object')
{
console.log ("[Cumulated Time] [Time] [Level] [Category] [Message]");
EOD;
return $string;
}
protected function renderMessage ($log, $info)
{
$logfunc = $this->getFirebugLoggingFunction($log[1]);
$total = sprintf('%0.6f', $info['total']);
$delta = sprintf('%0.6f', $info['delta']);
$msg = trim($this->formatLogMessage($log[0], $log[1], $log[2], ''));
$msg = preg_replace('/\(line[^\)]+\)$/', '', $msg); //remove line number info
$msg = "[{$total}] [{$delta}] ".$msg; // Add time spent and cumulated time spent
$string = $logfunc . '(\'' . addslashes($msg) . '\');' . "\n";
return $string;
}
protected function renderFooter ()
{
$string = <<<EOD
}
</script>
EOD;
return $string;
}
protected function getFirebugLoggingFunction($level)
{
switch ($level)
{
case TLogger::DEBUG:
case TLogger::INFO:
case TLogger::NOTICE:
return 'console.log';
case TLogger::WARNING:
return 'console.warn';
case TLogger::ERROR:
case TLogger::ALERT:
case TLogger::FATAL:
return 'console.error';
default:
return 'console.log';
}
}
}
|