File tree 2 files changed +52
-0
lines changed
2 files changed +52
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ class LineFormatter extends NormalizerFormatter
31
31
protected bool $ allowInlineLineBreaks ;
32
32
protected bool $ ignoreEmptyContextAndExtra ;
33
33
protected bool $ includeStacktraces ;
34
+ protected ?int $ maxLevelNameLength = null ;
34
35
protected Closure |null $ stacktracesParser = null ;
35
36
36
37
/**
@@ -83,13 +84,30 @@ public function ignoreEmptyContextAndExtra(bool $ignore = true): self
83
84
return $ this ;
84
85
}
85
86
87
+ /**
88
+ * Allows cutting the level name to get fixed-length levels like INF for INFO, ERR for ERROR if you set this to 3 for example
89
+ *
90
+ * @param int|null $maxLevelNameLength Maximum characters for the level name. Set null for infinite length (default)
91
+ * @return $this
92
+ */
93
+ public function setMaxLevelNameLength (?int $ maxLevelNameLength = null ): self
94
+ {
95
+ $ this ->maxLevelNameLength = $ maxLevelNameLength ;
96
+
97
+ return $ this ;
98
+ }
99
+
86
100
/**
87
101
* @inheritDoc
88
102
*/
89
103
public function format (LogRecord $ record ): string
90
104
{
91
105
$ vars = parent ::format ($ record );
92
106
107
+ if ($ this ->maxLevelNameLength !== null ) {
108
+ $ vars ['level_name ' ] = substr ($ vars ['level_name ' ], 0 , $ this ->maxLevelNameLength );
109
+ }
110
+
93
111
$ output = $ this ->format ;
94
112
foreach ($ vars ['extra ' ] as $ var => $ val ) {
95
113
if (false !== strpos ($ output , '%extra. ' .$ var .'% ' )) {
Original file line number Diff line number Diff line change @@ -276,6 +276,40 @@ public function testFormatShouldNotStripInlineLineBreaksWhenFlagIsSet()
276
276
277
277
$ this ->assertMatchesRegularExpression ('/foo\nbar/ ' , $ message );
278
278
}
279
+
280
+ /**
281
+ * @dataProvider providerMaxLevelNameLength
282
+ */
283
+ public function testMaxLevelNameLength (?int $ maxLength , Level $ logLevel , string $ expectedLevelName ): void
284
+ {
285
+ $ formatter = new LineFormatter (maxLevelNameLength: $ maxLength );
286
+ $ message = $ formatter ->format ($ this ->getRecord (message: "foo \nbar " , level: $ logLevel ));
287
+
288
+ $ this ->assertStringContainsString ("test. $ expectedLevelName: " , $ message );
289
+ }
290
+
291
+ public static function providerMaxLevelNameLength (): array
292
+ {
293
+ return [
294
+ 'info_no_max_length ' => [
295
+ 'max_length ' => null ,
296
+ 'level ' => Level::Info,
297
+ 'expected_level_name ' => 'INFO ' ,
298
+ ],
299
+
300
+ 'error_max_length_3 ' => [
301
+ 'max_length ' => 3 ,
302
+ 'level ' => Level::Error,
303
+ 'expected_level_name ' => 'ERR ' ,
304
+ ],
305
+
306
+ 'debug_max_length_2 ' => [
307
+ 'max_length ' => 2 ,
308
+ 'level ' => Level::Debug,
309
+ 'expected_level_name ' => 'DE ' ,
310
+ ],
311
+ ];
312
+ }
279
313
}
280
314
281
315
class TestFoo
You can’t perform that action at this time.
0 commit comments