1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-03 19:57:41 +02:00

Rename classnames to LogstashFormatter as suggested by @stof

This commit is contained in:
Tim Mower
2012-12-10 12:17:05 +00:00
parent 32e6bff219
commit 6aaf70d363
2 changed files with 14 additions and 14 deletions

View File

@@ -20,7 +20,7 @@ use Monolog\Logger;
* *
* @author Tim Mower <timothy.mower@gmail.com> * @author Tim Mower <timothy.mower@gmail.com>
*/ */
class LogstashEventFormatter extends NormalizerFormatter class LogstashFormatter extends NormalizerFormatter
{ {
/** /**
* @var string the name of the system for the Gelf log message * @var string the name of the system for the Gelf log message

View File

@@ -12,17 +12,17 @@
namespace Monolog\Formatter; namespace Monolog\Formatter;
use Monolog\Logger; use Monolog\Logger;
use Monolog\Formatter\LogstashEventFormatter; use Monolog\Formatter\LogstashFormatter;
class LogstashEventFormatterTest extends \PHPUnit_Framework_TestCase class LogstashFormatterTest extends \PHPUnit_Framework_TestCase
{ {
/** /**
* @covers Monolog\Formatter\LogstashEventFormatter::format * @covers Monolog\Formatter\LogstashFormatter::format
*/ */
public function testDefaultFormatter() public function testDefaultFormatter()
{ {
$formatter = new LogstashEventFormatter('test'); $formatter = new LogstashFormatter('test');
$record = array( $record = array(
'level' => Logger::ERROR, 'level' => Logger::ERROR,
'level_name' => 'ERROR', 'level_name' => 'ERROR',
@@ -42,7 +42,7 @@ class LogstashEventFormatterTest extends \PHPUnit_Framework_TestCase
$this->assertEquals(Logger::ERROR, $message['@fields']['level']); $this->assertEquals(Logger::ERROR, $message['@fields']['level']);
$this->assertEquals('test', $message['@source']); $this->assertEquals('test', $message['@source']);
$formatter = new LogstashEventFormatter('mysystem'); $formatter = new LogstashFormatter('mysystem');
$message = json_decode($formatter->format($record), true); $message = json_decode($formatter->format($record), true);
@@ -50,11 +50,11 @@ class LogstashEventFormatterTest extends \PHPUnit_Framework_TestCase
} }
/** /**
* @covers Monolog\Formatter\LogstashEventFormatter::format * @covers Monolog\Formatter\LogstashFormatter::format
*/ */
public function testFormatWithFileAndLine() public function testFormatWithFileAndLine()
{ {
$formatter = new LogstashEventFormatter('test'); $formatter = new LogstashFormatter('test');
$record = array( $record = array(
'level' => Logger::ERROR, 'level' => Logger::ERROR,
'level_name' => 'ERROR', 'level_name' => 'ERROR',
@@ -72,11 +72,11 @@ class LogstashEventFormatterTest extends \PHPUnit_Framework_TestCase
} }
/** /**
* @covers Monolog\Formatter\LogstashEventFormatter::format * @covers Monolog\Formatter\LogstashFormatter::format
*/ */
public function testFormatWithContext() public function testFormatWithContext()
{ {
$formatter = new LogstashEventFormatter('test'); $formatter = new LogstashFormatter('test');
$record = array( $record = array(
'level' => Logger::ERROR, 'level' => Logger::ERROR,
'level_name' => 'ERROR', 'level_name' => 'ERROR',
@@ -96,7 +96,7 @@ class LogstashEventFormatterTest extends \PHPUnit_Framework_TestCase
$this->assertEquals('logger', $message_array['ctxt_from']); $this->assertEquals('logger', $message_array['ctxt_from']);
// Test with extraPrefix // Test with extraPrefix
$formatter = new LogstashEventFormatter('test', null, 'CTX'); $formatter = new LogstashFormatter('test', null, 'CTX');
$message = json_decode($formatter->format($record), true); $message = json_decode($formatter->format($record), true);
@@ -108,11 +108,11 @@ class LogstashEventFormatterTest extends \PHPUnit_Framework_TestCase
} }
/** /**
* @covers Monolog\Formatter\LogstashEventFormatter::format * @covers Monolog\Formatter\LogstashFormatter::format
*/ */
public function testFormatWithExtra() public function testFormatWithExtra()
{ {
$formatter = new LogstashEventFormatter('test'); $formatter = new LogstashFormatter('test');
$record = array( $record = array(
'level' => Logger::ERROR, 'level' => Logger::ERROR,
'level_name' => 'ERROR', 'level_name' => 'ERROR',
@@ -131,7 +131,7 @@ class LogstashEventFormatterTest extends \PHPUnit_Framework_TestCase
$this->assertEquals('pair', $message_array['key']); $this->assertEquals('pair', $message_array['key']);
// Test with extraPrefix // Test with extraPrefix
$formatter = new LogstashEventFormatter('test', 'EXT'); $formatter = new LogstashFormatter('test', 'EXT');
$message = json_decode($formatter->format($record), true); $message = json_decode($formatter->format($record), true);
$message_array = $message['@fields']; $message_array = $message['@fields'];