mirror of
https://github.com/Seldaek/monolog.git
synced 2025-02-23 22:42:38 +01:00
Update TagProcessor.php
Array merge was unnecessary since it is not set anywhere else than here.
This commit is contained in:
parent
1242bed1c9
commit
34c39ee771
@ -27,10 +27,7 @@ class TagProcessor
|
||||
|
||||
public function __invoke(array $record)
|
||||
{
|
||||
$record['tags'] = array_merge(
|
||||
$this->tags,
|
||||
$record['tags']
|
||||
);
|
||||
$record['tags'] = $this->tags;
|
||||
|
||||
return $record;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user