Code

comment out confusing daemon_log lines
authorrettenbe <rettenbe@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 28 May 2009 13:03:09 +0000 (13:03 +0000)
committerrettenbe <rettenbe@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 28 May 2009 13:03:09 +0000 (13:03 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13678 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-si/gosa-si-server

index 8a8c11447f22d23bffcdfe0dc4bfc53b895f34b8..2f50b6a52f87d2aa44259dd55a1511f56b526944 100755 (executable)
@@ -660,8 +660,8 @@ sub input_from_known_server {
             next;
         }
         my $host_key = $hit->{hostkey};
-        daemon_log("$session_id DEBUG: input_from_known_server: host_name: $host_name", 7);
-        daemon_log("$session_id DEBUG: input_from_known_server: host_key: $host_key", 7);
+        #daemon_log("$session_id DEBUG: input_from_known_server: host_name: $host_name", 7);
+        #daemon_log("$session_id DEBUG: input_from_known_server: host_key: $host_key", 7);
 
         # check if module can open msg envelope with module key
         my ($tmp_msg, $tmp_msg_hash) = &check_key_and_xml_validity($input, $host_key, $session_id);
@@ -680,7 +680,7 @@ sub input_from_known_server {
     }
 
     if( (!$msg) || (!$msg_hash) || (!$module) ) {
-        daemon_log("$session_id DEBUG: Incoming message is not from a known server", 7);
+        #daemon_log("$session_id DEBUG: Incoming message is not from a known server", 7);
     }
   
     return ($msg, $msg_hash, $module);
@@ -699,8 +699,8 @@ sub input_from_known_client {
                 next;
                }
         my $host_key = $hit->{hostkey};
-        &daemon_log("$session_id DEBUG: input_from_known_client: host_name: $host_name", 7);
-        &daemon_log("$session_id DEBUG: input_from_known_client: host_key: $host_key", 7);
+        #&daemon_log("$session_id DEBUG: input_from_known_client: host_name: $host_name", 7);
+        #&daemon_log("$session_id DEBUG: input_from_known_client: host_key: $host_key", 7);
 
         # check if module can open msg envelope with module key
         ($msg, $msg_hash) = &check_key_and_xml_validity($input, $host_key, $session_id);
@@ -717,7 +717,7 @@ sub input_from_known_client {
     }
 
     if( (!$msg) || (!$msg_hash) || (!$module) ) {
-        &daemon_log("$session_id DEBUG: Incoming message is not from a known client", 7);
+        #&daemon_log("$session_id DEBUG: Incoming message is not from a known client", 7);
     }
 
     return ($msg, $msg_hash, $module);
@@ -743,7 +743,7 @@ sub input_from_unknown_host {
                        daemon_log("$session_id ERROR: no key specified in config file for $mod", 1);
                        next;
                }
-               daemon_log("$session_id DEBUG: $mod: $module_key", 7);
+               #daemon_log("$session_id DEBUG: $mod: $module_key", 7);
 
                # check if module can open msg envelope with module key
                ($msg, $msg_hash) = &check_key_and_xml_validity($input, $module_key, $session_id);
@@ -757,7 +757,7 @@ sub input_from_unknown_host {
        }
 
        if( (!$msg) || (!$msg_hash) || (!$module)) {
-               daemon_log("$session_id DEBUG: Incoming message is not from an unknown host", 7);
+               #daemon_log("$session_id DEBUG: Incoming message is not from an unknown host", 7);
        }
 
        return ($msg, $msg_hash, $module);