debug

The timeline below displays how wordpress function debug has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 3.7

function debug($msg)
{
    $args = func_get_args();
    $log = getLogger();
    $log->debug(implode(', ', $args));
}