From: rettenbe Date: Fri, 13 Nov 2009 10:03:08 +0000 (+0000) Subject: modify some daemon logs X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=554a0f632e3533cad63a82f3e1c63eea79017d07;p=gosa.git modify some daemon logs git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14809 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-si/modules/ArpHandler.pm b/gosa-si/modules/ArpHandler.pm index 7f7ad2297..210e95654 100644 --- a/gosa-si/modules/ArpHandler.pm +++ b/gosa-si/modules/ArpHandler.pm @@ -359,12 +359,12 @@ sub add_ldap_entry { if($result->code == 68) { # entry already exists &main::daemon_log("A WARNING: $dn ".$result->error, 3); } elsif($result->code == 0) { # everything went fine - &main::daemon_log("add entry $dn to ldap", 1); + &main::daemon_log("A INFO: Add entry $dn to ldap", 5); } else { # if any other error occur &main::daemon_log("A ERROR: $dn, ".$result->code.", ".$result->error, 1); } } else { - &main::daemon_log("A Not adding new Entry: LDAP disabled", 6); + &main::daemon_log("A INFO: Not adding new Entry: LDAP disabled", 5); } return; }