From c43558ba60ed027227010a9b93e37ee8b78be430 Mon Sep 17 00:00:00 2001 From: elij Date: Tue, 26 Apr 2011 11:52:11 -0700 Subject: add SQL_DEBUG variable and database logging add a hook to db_query to log all sql queries when SQL_DEBUG is set Additionally, provide better logging for sql error situations (provide backtrace as well as error message). Signed-off-by: Lukas Fleischer --- web/lib/config.inc.proto | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'web/lib/config.inc.proto') diff --git a/web/lib/config.inc.proto b/web/lib/config.inc.proto index 80a7e540..43c64d22 100644 --- a/web/lib/config.inc.proto +++ b/web/lib/config.inc.proto @@ -20,6 +20,10 @@ define( "PASSWD_MAX_LEN", 128 ); # Default language for displayed messages in the web interface. define("DEFAULT_LANG", "en"); +# Enable debug sql output. This sends each query to error_log. Useful for +# development. Should not be enabled in production. Default to 0 (off). +define("SQL_DEBUG", 0); + # Languages we have translations for $SUPPORTED_LANGS = array( "ca" => "CatalĂ ", -- cgit v1.2.3-24-g4f1b