Skip to content

Commit 1feb860

Browse files
philipp-check24Seldaek
authored andcommitted
Added possibility to set max length for level name in LineFormatter
Closes #1850
1 parent 70f6ca0 commit 1feb860

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed

src/Monolog/Formatter/LineFormatter.php

+18
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class LineFormatter extends NormalizerFormatter
3131
protected bool $allowInlineLineBreaks;
3232
protected bool $ignoreEmptyContextAndExtra;
3333
protected bool $includeStacktraces;
34+
protected ?int $maxLevelNameLength = null;
3435
protected Closure|null $stacktracesParser = null;
3536

3637
/**
@@ -83,13 +84,30 @@ public function ignoreEmptyContextAndExtra(bool $ignore = true): self
8384
return $this;
8485
}
8586

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+
86100
/**
87101
* @inheritDoc
88102
*/
89103
public function format(LogRecord $record): string
90104
{
91105
$vars = parent::format($record);
92106

107+
if ($this->maxLevelNameLength !== null) {
108+
$vars['level_name'] = substr($vars['level_name'], 0, $this->maxLevelNameLength);
109+
}
110+
93111
$output = $this->format;
94112
foreach ($vars['extra'] as $var => $val) {
95113
if (false !== strpos($output, '%extra.'.$var.'%')) {

tests/Monolog/Formatter/LineFormatterTest.php

+34
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,40 @@ public function testFormatShouldNotStripInlineLineBreaksWhenFlagIsSet()
276276

277277
$this->assertMatchesRegularExpression('/foo\nbar/', $message);
278278
}
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+
}
279313
}
280314

281315
class TestFoo

0 commit comments

Comments
 (0)