(PECL seaslog >=1.0.0)
SeasLog::notice — 记录通知日志信息
记录通知日志信息。
注意:
"NOTICE" - 正常但重要的事件。执行过程中比INFO级别更重要的信息。
message
日志消息。
content
`message`包含占位符,实现者会用content数组中的值替换这些占位符。例如,`message`是`log info from {NAME}`,`content`是`array('NAME' => neeke)`,则日志信息将是`log info from neeke`。
logger
第三个参数指定的`logger`将在此处立即使用,就像一个临时日志器,在调用函数SeasLog::setLogger()之前的内容中。如果`logger`为NULL或"",SeasLog将使用SeasLog::setLogger()设置的最后一个日志器。
记录日志信息成功返回TRUE,失败返回FALSE。
示例 #1 SeasLog::notice() 例子
<?php
var_dump(SeasLog::notice('log message'));
//包含content
var_dump(SeasLog::notice('log message from {NAME}',array('NAME' => 'neeke')));
//使用临时日志器
var_dump(SeasLog::notice('log message from {NAME}',array('NAME' => 'neeke'),'tmp_logger'));
var_dump(SeasLog::getBuffer());
?>
以上示例的输出类似于
bool(true) bool(true) bool(true) array(2) { ["/var/log/www/default/20180707.log"]=> array(2) { [0]=> string(81) "2018-07-07 11:45:49 | NOTICE | 73263 | 5b40376d1067c | 1530935149.68 | log message " [1]=> string(92) "2018-07-07 11:45:49 | NOTICE | 73263 | 5b40376d1067c | 1530935149.68 | log message from neeke " } ["/var/log/www/tmp_logger/20180707.log"]=> array(1) { [0]=> string(92) "2018-07-07 11:45:49 | NOTICE | 73263 | 5b40376d1067c | 1530935149.68 | log message from neeke " } }