1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-01 10:50:21 +02:00

Rename level_num to monolog_level, refs #960

This commit is contained in:
Jordi Boggiano
2017-06-18 23:58:15 +02:00
parent 56661027a7
commit b76bc133db
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ class LogstashFormatterTest extends \PHPUnit_Framework_TestCase
$this->assertEquals('log', $message['message']);
$this->assertEquals('meh', $message['channel']);
$this->assertEquals('ERROR', $message['level']);
$this->assertEquals(Logger::ERROR, $message['level_num']);
$this->assertEquals(Logger::ERROR, $message['monolog_level']);
$this->assertEquals('test', $message['type']);
$this->assertEquals('hostname', $message['host']);