Removed QBUG and DBUG

It was broken and hardly used. It's just as easy
to add short print statements or logging if
some debugging output is needed.

Signed-off-by: Simo Leone <simo@archlinux.org>
This commit is contained in:
Simo Leone 2008-01-23 02:51:33 -06:00
parent 2bcd8ff1db
commit 7bad8a8357
5 changed files with 0 additions and 50 deletions

View file

@ -86,7 +86,6 @@ function check_sid() {
} else {
$row = mysql_fetch_row($result);
if ($row[0] + $LOGIN_TIMEOUT <= $row[1]) {
dbug("login timeout reached");
$failed = 2;
}
}
@ -267,18 +266,12 @@ function db_connect() {
# query logging/debuggin in.
#
function db_query($query="", $db_handle="") {
global $QBUG;
if (!$query) {
return FALSE;
}
if (!$db_handle) {
$db_handle = db_connect();
}
if ($QBUG) {
$fp = fopen(AURQ_LOG, "a");
fwrite($fp, $query . "\n");
fclose($fp);
}
$result = @mysql_query($query, $db_handle);
return $result;
}
@ -419,15 +412,6 @@ function html_footer($ver="") {
return;
}
# debug logging
#
function dbug($msg) {
$fp = fopen(AURD_LOG, "a");
fwrite($fp, $msg . "\n");
fclose($fp);
return;
}
# check to see if the user can submit a package
#
function can_submit_pkg($name="", $sid="") {

View file

@ -11,9 +11,6 @@ define( "UPLOAD_DIR", "/home/aur/unsupported-temp/" );
define( "INCOMING_DIR", "/home/aur/unsupported/" );
define( "URL_DIR", "/packages/" );
define( "AURQ_LOG", "/home/aur/aurq.log" );
define( "AURD_LOG", "/home/aur/aurd.log" );
define( "USERNAME_MIN_LEN", 3 );
define( "USERNAME_MAX_LEN", 16 );
define( "PASSWD_MIN_LEN", 4 );
@ -21,11 +18,6 @@ define( "PASSWD_MAX_LEN", 128 );
$LOGIN_TIMEOUT = 7200; # number of idle seconds before timeout
# debugging variables
#
$QBUG = 1; # toggle query logging to /var/tmp/aurq.log
$DBUG = 1; # use dbug($msg) to log to /var/tmp/aurd.log
$SUPPORTED_LANGS = array( # what languages we have translations for
"en" => "English",
"pl" => "Polski",