Skip to content

Commit

Permalink
Merge pull request #4 from peckadesign/milous-patch-1
Browse files Browse the repository at this point in the history
FIX proměnná $level se nepředávala do loggeru
  • Loading branch information
MilanPala authored May 10, 2019
2 parents 5c7af75 + 3ebd77c commit 0b95236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ChannelLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public function debug($message, array $context = [])

public function log($level, $message, array $context = [])
{
$this->logger->log($message, $this->getContext($context));
$this->logger->log($level, $message, $this->getContext($context));
}

}

0 comments on commit 0b95236

Please sign in to comment.