From b1ef96931af52cd6234162f4d2dc6e2736c00d8e Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 10 Dec 2003 23:09:31 +0000 Subject: - Moved the watchdog() function to the bootsrap file. Patch by Moshe. --- includes/bootstrap.inc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'includes/bootstrap.inc') diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc index c13f1b8b7..eb15f13d8 100644 --- a/includes/bootstrap.inc +++ b/includes/bootstrap.inc @@ -213,6 +213,11 @@ function timer_start() { $timer = (float)$usec + (float)$sec; } +function watchdog($type, $message, $link = NULL) { + global $user; + db_query("INSERT INTO {watchdog} (uid, type, message, link, location, hostname, timestamp) VALUES (%d, '%s', '%s', '%s', '%s', '%s', %d)", $user->uid, $type, $message, $link, request_uri(), getenv("REMOTE_ADDR"), time()); +} + unset($conf); $config = conf_init(); -- cgit v1.2.3