Changeset 770 for trunk/includes/Database.php
- Timestamp:
- Jan 31, 2014, 12:28:54 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/Database.php
r769 r770 68 68 $Result->PDOStatement = $this->PDO->query($Query); 69 69 if(($this->ShowSQLQuery == true) or ($this->LogSQLQuery == true)) 70 $Duration = ' ; '. (microtime() - $QueryStartTime). ' s';70 $Duration = ' ; '.round(microtime() - $QueryStartTime, 3). ' s'; 71 71 if($this->LogSQLQuery == true) 72 72 file_put_contents($this->LogFile, $Query.$Duration."\n", FILE_APPEND);
Note:
See TracChangeset
for help on using the changeset viewer.