예제 #1
0
function logger($name)
{
    return Logging::getLogger($name);
}
예제 #2
0
파일: core.php 프로젝트: neoisldl/Onion
function logger($domain = null)
{
    $name = '__Onion__';
    if ($domain) {
        $name .= '.' . strtoupper($domain);
    }
    return \Onion\Utils\Logging::getLogger($name);
}