コード例 #1
0
ファイル: core.php プロジェクト: yeaha/lysine
function logger($domain = null)
{
    $name = '__LYSINE__';
    if ($domain) {
        $name .= '.' . strtoupper($domain);
    }
    return \Lysine\Utils\Logging::getLogger($name);
}
コード例 #2
0
ファイル: functions.php プロジェクト: yeaha/lysine
 function logger($name)
 {
     return Logging::getLogger($name);
 }