Logger->log() allow passing context (defaults to '')

This commit is contained in:
Andrew Dolgov 2018-09-10 21:32:10 +03:00
parent 4f17c3f977
commit 80fd79ca30
1 changed files with 2 additions and 2 deletions

View File

@ -30,9 +30,9 @@ class Logger {
return false;
}
function log($string) {
function log($string, $context = "") {
if ($this->adapter)
return $this->adapter->log_error(E_USER_NOTICE, $string, '', 0, '');
return $this->adapter->log_error(E_USER_NOTICE, $string, '', 0, $context);
else
return false;
}