Skip to content

Commit

Permalink
Pass missed argument to log method (#22957)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nguyen Xuan Quynh authored and taylorotwell committed Jan 30, 2018
1 parent 806e01e commit 4c56dba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Log/LogManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ public function debug($message, array $context = [])
*/
public function log($level, $message, array $context = [])
{
return $this->driver()->log($message, $context);
return $this->driver()->log($level, $message, $context);
}

/**
Expand Down

0 comments on commit 4c56dba

Please sign in to comment.