diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-05-15 13:20:48 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-05-15 13:20:48 +0200 |
commit | 43079d8e2dbd8e195b63dd8fb9f5251ae7c66248 (patch) | |
tree | 3a18e472cf88b2004c1ee1058868bbda98acf3f8 /program/lib/Roundcube/rcube_db.php | |
parent | e5b376b17845d5377af71b8e505417048d0eec94 (diff) |
Simplify/fix debug lines truncation
Diffstat (limited to 'program/lib/Roundcube/rcube_db.php')
-rw-r--r-- | program/lib/Roundcube/rcube_db.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/program/lib/Roundcube/rcube_db.php b/program/lib/Roundcube/rcube_db.php index f8a9bdc37..5da38c899 100644 --- a/program/lib/Roundcube/rcube_db.php +++ b/program/lib/Roundcube/rcube_db.php @@ -257,8 +257,9 @@ class rcube_db { if ($this->options['debug_mode']) { if (($len = strlen($query)) > self::DEBUG_LINE_LENGTH) { - $query = substr_replace($query, "\n-----[debug cut]-----\n", - self::DEBUG_LINE_LENGTH/2 - 11, $len - self::DEBUG_LINE_LENGTH - 22); + $diff = $len - self::DEBUG_LINE_LENGTH; + $query = substr($query, 0, self::DEBUG_LINE_LENGTH) + . "... [truncated $diff bytes]"; } rcube::write_log('sql', '[' . (++$this->db_index) . '] ' . $query . ';'); } |