]> git.sur5r.net Git - openldap/commitdiff
Added LDAP_LOG messages
authorJulius Enarusai <julius@openldap.org>
Wed, 27 Mar 2002 19:43:07 +0000 (19:43 +0000)
committerJulius Enarusai <julius@openldap.org>
Wed, 27 Mar 2002 19:43:07 +0000 (19:43 +0000)
libraries/libldap/getattr.c

index dd18acd969eb0012ca6fe2baff38ae9e68fe182c..e5cd6e628d910edf1f09734f212d394b6f7f9bbc 100644 (file)
@@ -30,7 +30,11 @@ ldap_first_attribute( LDAP *ld, LDAPMessage *entry, BerElement **berout )
        char *attr;
        BerElement *ber;
 
+#ifdef NEW_LOGGING
+       LDAP_LOG (( "getattr", LDAP_LEVEL_ENTRY, "ldap_first_attribute\n" ));
+#else
        Debug( LDAP_DEBUG_TRACE, "ldap_first_attribute\n", 0, 0, 0 );
+#endif
 
        assert( ld != NULL );
        assert( LDAP_VALID( ld ) );
@@ -92,7 +96,11 @@ ldap_next_attribute( LDAP *ld, LDAPMessage *entry, BerElement *ber )
        ber_tag_t tag;
        char *attr;
 
+#ifdef NEW_LOGGING
+       LDAP_LOG (( "getattr", LDAP_LEVEL_ENTRY, "ldap_next_attribute\n" ));
+#else
        Debug( LDAP_DEBUG_TRACE, "ldap_next_attribute\n", 0, 0, 0 );
+#endif
 
        assert( ld != NULL );
        assert( LDAP_VALID( ld ) );