Definition:
function error($msg) {}
Parameters
- $msg
Source code
function error($msg) {
$args = func_get_args();
$log = getLogger();
$log->error(implode(', ', $args));
}
1016
Definition:
function error($msg) {}
function error($msg) {
$args = func_get_args();
$log = getLogger();
$log->error(implode(', ', $args));
}
1016
No comments yet... Be the first to leave a reply!