update Piwik to version 2.16 (fixes #91)
This commit is contained in:
parent
296343bf3b
commit
d885a4baa9
5833 changed files with 418860 additions and 226988 deletions
39
www/analytics/plugins/Monolog/Handler/DatabaseHandler.php
Normal file
39
www/analytics/plugins/Monolog/Handler/DatabaseHandler.php
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace Piwik\Plugins\Monolog\Handler;
|
||||
|
||||
use Monolog\Handler\AbstractProcessingHandler;
|
||||
use Piwik\Common;
|
||||
use Piwik\Db;
|
||||
|
||||
/**
|
||||
* Writes log to database.
|
||||
*/
|
||||
class DatabaseHandler extends AbstractProcessingHandler
|
||||
{
|
||||
protected function write(array $record)
|
||||
{
|
||||
$sql = sprintf(
|
||||
'INSERT INTO %s (tag, timestamp, level, message) VALUES (?, ?, ?, ?)',
|
||||
Common::prefixTable('logger_message')
|
||||
);
|
||||
|
||||
$queryLog = Db::isQueryLogEnabled();
|
||||
Db::enableQueryLog(false);
|
||||
|
||||
Db::query($sql, array(
|
||||
$record['extra']['class'],
|
||||
$record['datetime']->format('Y-m-d H:i:s'),
|
||||
$record['level_name'],
|
||||
trim($record['formatted'])
|
||||
));
|
||||
|
||||
Db::enableQueryLog($queryLog);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue