Author: rhafer Date: Fri Jun 27 16:01:24 2008 New Revision: 48662 URL: http://svn.opensuse.org/viewcvs/yast?rev=48662&view=rev Log: Fixed logging output Modified: trunk/ldap-server/src/lib/slapd-config.cpp Modified: trunk/ldap-server/src/lib/slapd-config.cpp URL: http://svn.opensuse.org/viewcvs/yast/trunk/ldap-server/src/lib/slapd-config.... ============================================================================== --- trunk/ldap-server/src/lib/slapd-config.cpp (original) +++ trunk/ldap-server/src/lib/slapd-config.cpp Fri Jun 27 16:01:24 2008 @@ -949,7 +949,7 @@ sr = m_lc->search( "cn=config", LDAPConnection::SEARCH_BASE); dbEntry = sr->getNext(); } catch (LDAPException e) { - log_it(0, e.getResultMsg() + ": " + e.getServerMsg() ); + log_it(0, e.getResultMsg() + " " + e.getServerMsg() ); throw; } if ( dbEntry ) { @@ -967,7 +967,7 @@ LDAPModList ml = olcg.entryDifftoMod(); m_lc->modify( olcg.getDn(), &ml ); } catch (LDAPException e) { - log_it(0, e.getResultMsg() + ": " + e.getServerMsg() ); + log_it(0, e.getResultMsg() + " " + e.getServerMsg() ); throw; } } @@ -989,7 +989,7 @@ } } } catch (LDAPException e) { - log_it(0, e.getResultMsg() + e.getServerMsg() ); + log_it(0, e.getResultMsg() + " " + e.getServerMsg() ); throw; } } @@ -1018,7 +1018,7 @@ res.push_back(olce); } } catch (LDAPException e ) { - log_it(0, e.getResultMsg() + e.getServerMsg() ); + log_it(0, e.getResultMsg() + " " + e.getServerMsg() ); throw; } return res; @@ -1039,7 +1039,7 @@ res.push_back(olce); } } catch (LDAPException e ) { - log_it(0, e.getResultMsg() + e.getServerMsg() ); + log_it(0, e.getResultMsg() + " " + e.getServerMsg() ); throw; } return res; -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org