From d020f5976125e6845a8911090c50b9a78ab9695e Mon Sep 17 00:00:00 2001 From: Tom Laermans Date: Thu, 7 Jan 2010 18:19:53 +0000 Subject: [PATCH] remove debug print in eventlog() git-svn-id: http://www.observium.org/svn/observer/trunk@614 61d68cd4-352d-0410-923a-c4978735b2b8 --- includes/functions.php | 1 - 1 file changed, 1 deletion(-) diff --git a/includes/functions.php b/includes/functions.php index eac63b6c1..96355c42e 100755 --- a/includes/functions.php +++ b/includes/functions.php @@ -739,7 +739,6 @@ function eventlog($eventtext,$device_id = "", $interface_id = "") { $event_query = "INSERT INTO eventlog (host, interface, datetime, message) VALUES (" . ($device_id ? $device_id : "NULL"); $event_query .= ", " . ($interface_id ? $interface_id : "NULL") . ", NOW(), '" . mysql_escape_string($eventtext) . "')"; - echo "$event_query\n"; mysql_query($event_query); }