diff --git a/includes/watchdog.inc b/includes/watchdog.inc
index 6a5b66163dba1700bc6f8829d48cd479a8ffa88a..41961d66120f6f1f4791e34eebec7da765e72dc8 100644
--- a/includes/watchdog.inc
+++ b/includes/watchdog.inc
@@ -9,7 +9,7 @@
 
 function watchdog($id, $message) {
   global $user, $watchdog, $watchdog_history;
-/*
+
   if ($watchdog[$id][1] && !user_permission()) {
     if ($log = db_fetch_object(db_query("SELECT * FROM watchdog WHERE hostname = '". getenv("REMOTE_ADDR") ."' AND level = '". $watchdog[$id][0] ."'"))) {
       if (time() - $log->timestamp < $watchdog[$id][1]) {
@@ -19,7 +19,6 @@ function watchdog($id, $message) {
       }
     }
   }
-*/
 
   // Perform query to add new watchdog entry:
   db_query("INSERT INTO watchdog (level, timestamp, user, message, location, hostname) VALUES ('". $watchdog[$id][0] ."', '". time() ."', '". check_input($user->id) ."', '". check_input($message) ."', '". check_input(getenv("REQUEST_URI")) ."', '". check_input(getenv("REMOTE_ADDR")) ."')");