mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
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 <archlinux@cryptocrack.de>
This commit is contained in:
parent
10ea5f5ff6
commit
c43558ba60
2 changed files with 16 additions and 0 deletions
|
@ -238,10 +238,22 @@ function db_query($query="", $db_handle="") {
|
||||||
if (!$query) {
|
if (!$query) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$db_handle) {
|
if (!$db_handle) {
|
||||||
die("DB handle was not provided to db_query");
|
die("DB handle was not provided to db_query");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (SQL_DEBUG == 1) {
|
||||||
|
$bt = debug_backtrace();
|
||||||
|
error_log("DEBUG: ".$bt[0]['file'].":".$bt[0]['line']." query: $query\n");
|
||||||
|
}
|
||||||
|
|
||||||
$result = @mysql_query($query, $db_handle);
|
$result = @mysql_query($query, $db_handle);
|
||||||
|
if (!$result) {
|
||||||
|
$bt = debug_backtrace();
|
||||||
|
error_log("ERROR: near ".$bt[0]['file'].":".$bt[0]['line']." in query: $query\n -> ".mysql_error($db_handle));
|
||||||
|
}
|
||||||
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,10 @@ define( "PASSWD_MAX_LEN", 128 );
|
||||||
# Default language for displayed messages in the web interface.
|
# Default language for displayed messages in the web interface.
|
||||||
define("DEFAULT_LANG", "en");
|
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
|
# Languages we have translations for
|
||||||
$SUPPORTED_LANGS = array(
|
$SUPPORTED_LANGS = array(
|
||||||
"ca" => "Català",
|
"ca" => "Català",
|
||||||
|
|
Loading…
Add table
Reference in a new issue