From 43079d8e2dbd8e195b63dd8fb9f5251ae7c66248 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Wed, 15 May 2013 13:20:48 +0200 Subject: Simplify/fix debug lines truncation --- program/lib/Roundcube/rcube_db.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'program/lib/Roundcube/rcube_db.php') 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 . ';'); } -- cgit v1.2.3