Code

no debug printouts
authorrettenbe <rettenbe@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 15 Jan 2008 14:56:03 +0000 (14:56 +0000)
committerrettenbe <rettenbe@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 15 Jan 2008 14:56:03 +0000 (14:56 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8369 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-si/gosa-si-server
gosa-si/modules/GosaPackages.pm

index 897aef8b6a23665f8f6ab0924b4af229b96d76f4..5ad1a8f3fce73dd8075752d08410d413faf13725 100755 (executable)
@@ -990,21 +990,17 @@ while(1) {
                 $free_child{$pid} = $child_hash;
 
             } else {
-                print ">>>>>>>>>>>1\n";
                 # send computed answer back to connected client
                 my $act_client = $busy_child{$pid}{client_ref};
                 print $act_client $in_msg."\n";
-                print ">>>>>>>>>>>2\n";
 
                 #my $act_pipe = $busy_child{$pid}{pipe_rd};
                 delete $busy_child{$pid};
                 $free_child{$pid} = $child_hash;
-                print ">>>>>>>>>>>3\n";
 
                 # give the client a chance to read 
                 sleep(5);
                 close ($act_client);   
-                print ">>>>>>>>>>>4\n";
 
             }
         }
index b6f1f5ad843b1fcfabbd8d562276c6da95409e41..7f211a59dc3c12b3fcb3a42c093fc86b64edde38 100644 (file)
@@ -287,7 +287,6 @@ sub process_incoming_msg {
         &main::daemon_log("function 'process_incoming_msg': got no msg", 7);
         return;
     }
-    &main::daemon_log("GosaPackages: incoming msg: \n>>>$crypted_msg<<<", 7);
 
     $crypted_msg =~ /^([\s\S]*?)\.(\d{1,3}?)\.(\d{1,3}?)\.(\d{1,3}?)\.(\d{1,3}?)$/;
     $crypted_msg = $1;
@@ -340,8 +339,6 @@ sub process_incoming_msg {
 
     } else {
 
-        &main::daemon_log("antwort von query jobs db:", 1);
-        &main::daemon_log("$out_msg", 1);
         my $out_cipher = &create_ciphering($gosa_passwd);
         $out_msg = &encrypt_msg($out_msg, $out_cipher);
         return $out_msg;