1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Copyright 2014 SURFnet bv |
5
|
|
|
* |
6
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); |
7
|
|
|
* you may not use this file except in compliance with the License. |
8
|
|
|
* You may obtain a copy of the License at |
9
|
|
|
* |
10
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0 |
11
|
|
|
* |
12
|
|
|
* Unless required by applicable law or agreed to in writing, software |
13
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, |
14
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
15
|
|
|
* See the License for the specific language governing permissions and |
16
|
|
|
* limitations under the License. |
17
|
|
|
*/ |
18
|
|
|
|
19
|
|
|
namespace Surfnet\StepupBundle\Monolog\Formatter; |
20
|
|
|
|
21
|
|
|
use Monolog\Formatter\JsonFormatter as MonologJsonFormatter; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* Formats incoming records into a one-line JSON string. Includes only the channel. level, message, context and extra |
25
|
|
|
* fields of records, omitting the datetime for example. |
26
|
|
|
*/ |
27
|
|
|
class JsonFormatter extends MonologJsonFormatter |
28
|
|
|
{ |
29
|
|
|
public function format(array $record) |
30
|
|
|
{ |
31
|
|
|
return parent::format($this->mapRecord($record)); |
32
|
|
|
} |
33
|
|
|
|
34
|
|
|
public function formatBatch(array $records) |
35
|
|
|
{ |
36
|
|
|
return parent::formatBatch( |
37
|
|
|
array_map( |
38
|
|
|
function (array $record) { |
39
|
|
|
return $this->mapRecord($record); |
40
|
|
|
}, |
41
|
|
|
$records |
42
|
|
|
) |
43
|
|
|
); |
44
|
|
|
} |
45
|
|
|
|
46
|
|
|
private function mapRecord(array $record) |
47
|
|
|
{ |
48
|
|
|
return [ |
49
|
|
|
'channel' => $record['channel'], |
50
|
|
|
'level' => $record['level_name'], |
51
|
|
|
'message' => $record['message'], |
52
|
|
|
'context' => $record['context'], |
53
|
|
|
'extra' => $record['extra'], |
54
|
|
|
]; |
55
|
|
|
} |
56
|
|
|
} |
57
|
|
|
|