diff options
author | Dmitry <dmitry@dhtmlx.com> | 2012-07-12 14:53:38 +0200 |
---|---|---|
committer | Dmitry <dmitry@dhtmlx.com> | 2012-07-12 14:53:38 +0200 |
commit | 9446d2cc48200e4c6c56adb66b9c1dad97ec9de6 (patch) | |
tree | f86ac0ef05dca438e0b87c17e9981a2aca50a620 /codebase/tools.php | |
parent | 6fc9bef8a15525b8973fb3855cdf830725545786 (diff) | |
download | connector-php-9446d2cc48200e4c6c56adb66b9c1dad97ec9de6.zip connector-php-9446d2cc48200e4c6c56adb66b9c1dad97ec9de6.tar.gz connector-php-9446d2cc48200e4c6c56adb66b9c1dad97ec9de6.tar.bz2 |
fix log date format
Diffstat (limited to 'codebase/tools.php')
-rw-r--r-- | codebase/tools.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/codebase/tools.php b/codebase/tools.php index 2a0ec01..5017a72 100644 --- a/codebase/tools.php +++ b/codebase/tools.php @@ -259,7 +259,7 @@ class LogMaster{ if ($name){
set_error_handler(array("LogMaster","error_log"),E_ALL);
set_exception_handler(array("LogMaster","exception_log"));
- LogMaster::log("\n\n====================================\nLog started, ".date("d/m/Y h:m:s")."\n====================================");
+ LogMaster::log("\n\n====================================\nLog started, ".date("d/m/Y h:i:s")."\n====================================");
}
}
}
|