You are here

public function LoggerInterface::error in TMGMT Translator Smartling 8.3

Same name and namespace in other branches
  1. 8.4 vendor/psr/log/Psr/Log/LoggerInterface.php \Psr\Log\LoggerInterface::error()
  2. 8.2 vendor/psr/log/Psr/Log/LoggerInterface.php \Psr\Log\LoggerInterface::error()

Runtime errors that do not require immediate action but should typically be logged and monitored.

Parameters

string $message:

array $context:

Return value

void

2 methods override LoggerInterface::error()
AbstractLogger::error in vendor/psr/log/Psr/Log/AbstractLogger.php
Runtime errors that do not require immediate action but should typically be logged and monitored.
DevNullLogger::error in vendor/smartling/api-sdk-php/src/Logger/DevNullLogger.php
Runtime errors that do not require immediate action but should typically be logged and monitored.

File

vendor/psr/log/Psr/Log/LoggerInterface.php, line 66

Class

LoggerInterface
Describes a logger instance.

Namespace

Psr\Log

Code

public function error($message, array $context = array());