Exemple #1
0
 /**
  * @brief 保存到日志中
  *
  * @author cuichao02 
  * @date 2011/02/21
  **/
 protected static function saveLogNotice()
 {
     Saf_Base_Hook::saveLogHook();
     Saf_Base_Log::notice();
 }
Exemple #2
0
 public static function saveLogNotice()
 {
     if (!self::$arrCommonAction['log']) {
         //被裁剪
         return true;
     }
     Saf_Base_Hook::saveLogHook();
     $arrArgs = Saf_SmartMain::getLogNotice();
     if ($arrArgs === false) {
         return false;
     }
     Saf_Base_Log::addLogNotice($arrArgs);
 }