You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?php
|
|
namespace Base\Tool;
|
|
|
|
use Think\Log;
|
|
|
|
class PlatformLog
|
|
{
|
|
public static function write($message, $path, $level = Log::INFO) {
|
|
$destination = C('LOG_PATH'). $path . '/' . date('y_m_d').'.log';
|
|
Log::write($message, $level, '', $destination);
|
|
}
|
|
} |