Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-12-19 11:06:28 +0300
committermattab <matthieu.aubry@gmail.com>2014-12-19 11:06:48 +0300
commit5bc86c2e9a9baf5ac227fb87ea25847f7a5067dd (patch)
tree6849298550a14da126f4a669c458f1043e8476a1 /core/Db.php
parent0e779132df01e7b7992a5ee0469feee5b69de639 (diff)
Remove line break when logging sql
Diffstat (limited to 'core/Db.php')
-rw-r--r--core/Db.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Db.php b/core/Db.php
index fa26f34f02..66aef40222 100644
--- a/core/Db.php
+++ b/core/Db.php
@@ -711,6 +711,6 @@ class Db
private static function logSql($functionName, $sql, $parameters = array())
{
// NOTE: at the moment we dont log bind in order to avoid sensitive information leaks
- Log::verbose("Db::%s() executing SQL:\n%s", $functionName, $sql);
+ Log::verbose("Db::%s() executing SQL: %s", $functionName, $sql);
}
}