[yast-commit] r59940 - in /branches/SuSE-Code-11-SP1-Branch/ldap-server/src: LdapServer.pm lib/slapd-config.cpp
Author: rhafer Date: Thu Dec 3 16:53:05 2009 New Revision: 59940 URL: http://svn.opensuse.org/viewcvs/yast?rev=59940&view=rev Log: silenced default logging a bit Modified: branches/SuSE-Code-11-SP1-Branch/ldap-server/src/LdapServer.pm branches/SuSE-Code-11-SP1-Branch/ldap-server/src/lib/slapd-config.cpp Modified: branches/SuSE-Code-11-SP1-Branch/ldap-server/src/LdapServer.pm URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP1-Branch/ldap-server/src/LdapServer.pm?rev=59940&r1=59939&r2=59940&view=diff ============================================================================== --- branches/SuSE-Code-11-SP1-Branch/ldap-server/src/LdapServer.pm (original) +++ branches/SuSE-Code-11-SP1-Branch/ldap-server/src/LdapServer.pm Thu Dec 3 16:53:05 2009 @@ -2882,7 +2882,7 @@ else { my $limits = SCR->Read(".ldapserver.database.{".$i."}.limits" ); - y2debug("Database $i limits:". Data::Dumper->Dump([ $limits ]) ); + y2milestone("Database $i limits:". Data::Dumper->Dump([ $limits ]) ); foreach my $limit (@$limits) { if ( $limit->{'selector'} eq "dn.exact=\"".$syncreplbaseconfig->{'binddn'}."\"" ) Modified: branches/SuSE-Code-11-SP1-Branch/ldap-server/src/lib/slapd-config.cpp URL: http://svn.opensuse.org/viewcvs/yast/branches/SuSE-Code-11-SP1-Branch/ldap-server/src/lib/slapd-config.cpp?rev=59940&r1=59939&r2=59940&view=diff ============================================================================== --- branches/SuSE-Code-11-SP1-Branch/ldap-server/src/lib/slapd-config.cpp (original) +++ branches/SuSE-Code-11-SP1-Branch/ldap-server/src/lib/slapd-config.cpp Thu Dec 3 16:53:05 2009 @@ -191,7 +191,7 @@ void OlcConfigEntry::setStringValue(const std::string &type, const std::string &value) { - log_it(SLAPD_LOG_INFO,"setStringValue() " + type + " " + value); + log_it(SLAPD_LOG_DEBUG,"setStringValue() " + type + " " + value); if ( value.empty() ) { m_dbEntryChanged.delAttribute(type); @@ -290,7 +290,7 @@ if ( deleted ) { delValues.add(*j); - log_it(SLAPD_LOG_INFO,"Value deleted: " + *j ); + log_it(SLAPD_LOG_DEBUG,"Value deleted: " + *j ); } } j = changedAttr->getValues().begin(); @@ -308,7 +308,7 @@ if ( added ) { addValues.add(*j); - log_it(SLAPD_LOG_INFO,"Value added: " + *j); + log_it(SLAPD_LOG_DEBUG,"Value added: " + *j); } } bool replace = false; @@ -1206,11 +1206,11 @@ spos1 = spos2; spos2 = securityVal.find_first_of("=", spos1 ); std::string key = securityVal.substr(spos1, spos2-spos1); - log_it(SLAPD_LOG_INFO, "Key: <" + key + ">"); + log_it(SLAPD_LOG_DEBUG, "Key: <" + key + ">"); spos1 = spos2 + 1; spos2 = extractAlcToken(securityVal, spos1, false ); std::string value = securityVal.substr(spos1, spos2-spos1); - log_it(SLAPD_LOG_INFO, "Value: <" + value + ">"); + log_it(SLAPD_LOG_DEBUG, "Value: <" + value + ">"); if ( spos2 != std::string::npos ) { spos1 = spos2 + 1; -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
rhafer@svn.opensuse.org