Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions Psr/Log/LoggerInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ public function emergency($message, array $context = array());
* Example: Entire website down, database unavailable, etc. This should
* trigger the SMS alerts and wake you up.
*
* @param string $message
* @param array $context
* @param string|object $message
* @param array $context
*
* @return void
*/
Expand All @@ -47,8 +47,8 @@ public function alert($message, array $context = array());
*
* Example: Application component unavailable, unexpected exception.
*
* @param string $message
* @param array $context
* @param string|object $message
* @param array $context
*
* @return void
*/
Expand All @@ -58,8 +58,8 @@ public function critical($message, array $context = array());
* Runtime errors that do not require immediate action but should typically
* be logged and monitored.
*
* @param string $message
* @param array $context
* @param string|object $message
* @param array $context
*
* @return void
*/
Expand All @@ -71,8 +71,8 @@ public function error($message, array $context = array());
* Example: Use of deprecated APIs, poor use of an API, undesirable things
* that are not necessarily wrong.
*
* @param string $message
* @param array $context
* @param string|object $message
* @param array $context
*
* @return void
*/
Expand All @@ -81,8 +81,8 @@ public function warning($message, array $context = array());
/**
* Normal but significant events.
*
* @param string $message
* @param array $context
* @param string|object $message
* @param array $context
*
* @return void
*/
Expand All @@ -93,8 +93,8 @@ public function notice($message, array $context = array());
*
* Example: User logs in, SQL logs.
*
* @param string $message
* @param array $context
* @param string|object $message
* @param array $context
*
* @return void
*/
Expand All @@ -103,8 +103,8 @@ public function info($message, array $context = array());
/**
* Detailed debug information.
*
* @param string $message
* @param array $context
* @param string|object $message
* @param array $context
*
* @return void
*/
Expand All @@ -113,9 +113,9 @@ public function debug($message, array $context = array());
/**
* Logs with an arbitrary level.
*
* @param mixed $level
* @param string $message
* @param array $context
* @param mixed $level
* @param string|object $message
* @param array $context
*
* @return void
*/
Expand Down