From 65713fdf4cd1c376fa8780270bc78c3821ca7184 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 27 Feb 2013 15:33:54 +0400 Subject: log queries is QUERY_LOG is defined --- include/db.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'include/db.php') diff --git a/include/db.php b/include/db.php index 7b2bd2a77..4e821105a 100644 --- a/include/db.php +++ b/include/db.php @@ -52,9 +52,11 @@ function db_escape_string($s, $strip_tags = true) { } function db_query($link, $query, $die_on_error = true) { - //if ($_REQUEST["qlog"]) - // error_log($_SESSION["uid"] . ":" . $_REQUEST["op"] . "/" . $_REQUEST["method"] . - // " $query\n", 3, "/tmp/ttrss-query.log"); + if ($_REQUEST["qlog"] || defined('QUERY_LOG')) { + $query = trim($query); + error_log($_SESSION["uid"] . ":" . $_REQUEST["op"] . "/" . $_REQUEST["method"] . + " $query\n", 3, "/tmp/ttrss-query.log"); + } if (DB_TYPE == "pgsql") { $result = pg_query($link, $query); -- cgit v1.2.3