Skip to content
Snippets Groups Projects
Commit 4705ffb1 authored by Demian Katz's avatar Demian Katz
Browse files

Style fix.

parent dc9c753d
No related merge requests found
......@@ -268,13 +268,15 @@ class Logger extends BaseLogger implements ServiceLocatorAwareInterface
if (is_array($message)) {
$timestamp = new \DateTime();
foreach ($this->writers->toArray() as $writer) {
$writer->write(array(
'timestamp' => $timestamp,
'priority' => (int) $priority,
'priorityName' => $this->priorities[$priority],
'message' => $message,
'extra' => $extra
));
$writer->write(
array(
'timestamp' => $timestamp,
'priority' => (int) $priority,
'priorityName' => $this->priorities[$priority],
'message' => $message,
'extra' => $extra
)
);
}
return $this;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment