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