Changeset 21430 for branches


Ignore:
Timestamp:
2012/02/01 22:23:47 (12 years ago)
Author:
Seasoft
Message:

#1625 (typo修正・ソース整形・ソースコメントの改善)

  • ログ書き出しの改行漏れ。
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_Query.php

    r21420 r21430  
    943943            $timeExecTime = $timeEnd - $timeStart; 
    944944            if(defined('SQL_QUERY_LOG_MIN_EXEC_TIME') && $timeExecTime >= (float)SQL_QUERY_LOG_MIN_EXEC_TIME) { 
    945                 $logMsg = sprintf("SQL_LOG [%.2fsec]\n%s", $timeExecTime, $sth->query); 
     945                $logMsg = sprintf("SQL_LOG [%.2fsec]\n%s", $timeExecTime, $sth->query) . "\n"; 
    946946                error_log($logMsg, 3, LOG_REALFILE); 
    947947            } 
Note: See TracChangeset for help on using the changeset viewer.