summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 24749da)
raw | patch | inline | side by side (parent: 24749da)
author | rettenbe <rettenbe@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 10 Mar 2008 12:36:50 +0000 (12:36 +0000) | ||
committer | rettenbe <rettenbe@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 10 Mar 2008 12:36:50 +0000 (12:36 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9558 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-si/gosa-si-client | patch | blob | history | |
gosa-si/gosa-si-server | patch | blob | history |
diff --git a/gosa-si/gosa-si-client b/gosa-si/gosa-si-client
index 4841038ca30a8785d7103064b8893dfef574c1a0..cbc3e571952a00d7474b602a6cc4650915c277bd 100755 (executable)
--- a/gosa-si/gosa-si-client
+++ b/gosa-si/gosa-si-client
my $file_record = $_[ARG0];
my $header;
my $content = "";
+ daemon_log("DEBUG: fifo got record: $file_record", 7);
$file_record =~ /^(\S+)[ ]?([\s\S]+)?$/;
if( defined $1 ) {
diff --git a/gosa-si/gosa-si-server b/gosa-si/gosa-si-server
index c721cd18f4f7900e5dffc8fa2f40444c132c78ef..0907860f23927e72277d35bef9975ac90e0556e4 100755 (executable)
--- a/gosa-si/gosa-si-server
+++ b/gosa-si/gosa-si-server
}
if( (!$msg) || (!$msg_hash) || (!$module) ) {
- &daemon_log("DEBUG: Incoming message is not from a known client", 5);
+ &daemon_log("DEBUG: Incoming message is not from a known client", 7);
}
return ($msg, $msg_hash, $module);
daemon_log("", 5);
daemon_log("INFO: Incoming msg from '".$heap->{'remote_ip'}."'", 5);
- daemon_log("DEBUG: Incoming message:\n$input", 9);
+ daemon_log("DEBUG: Incoming msg:\n$input", 9);
####################
# check incoming msg
######################
# process incoming msg
if( $error == 0) {
+ daemon_log("INFO: Incoming msg with header '".@{$msg_hash->{'header'}}[0]."'", 5);
daemon_log("DEBUG: Processing module ".$module, 7);
$answer_l = &{ $module."::process_incoming_msg" }($msg, $msg_hash, $session_id);