From: rettenbe Date: Thu, 28 May 2009 13:03:09 +0000 (+0000) Subject: comment out confusing daemon_log lines X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8e102df6947874b6a69a5b2a86fbc08ef930fdfa;p=gosa.git comment out confusing daemon_log lines git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13678 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-si/gosa-si-server b/gosa-si/gosa-si-server index 8a8c11447..2f50b6a52 100755 --- a/gosa-si/gosa-si-server +++ b/gosa-si/gosa-si-server @@ -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);