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

Replaced LogglyFormatter with option to change batch formatting in JsonFormatter

This commit is contained in:
Adam Pancutt
2014-01-21 11:39:58 +00:00
parent e17aad1a99
commit 95f0649b59
4 changed files with 69 additions and 74 deletions

View File

@@ -1,36 +0,0 @@
<?php
/*
* This file is part of the Monolog package.
*
* (c) Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Monolog\Formatter;
use Monolog\Logger;
use Monolog\TestCase;
class LogglyFormatterTest extends TestCase
{
/**
* @covers Monolog\Formatter\LogglyFormatter::formatBatch
*/
public function testFormatBatch()
{
$formatter = new LogglyFormatter();
$records = $expected = array(
$this->getRecord(Logger::WARNING),
$this->getRecord(Logger::DEBUG),
);
array_walk($expected, function(&$value, $key) {
$value = json_encode($value);
});
$this->assertEquals(implode("\n", $expected), $formatter->formatBatch($records));
}
}