1
0
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:
ipsq 2014-03-31 20:23:37 +02:00
parent 1242bed1c9
commit 34c39ee771

View File

@ -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;
}