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