diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:35:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:35:32 +0000 |
commit | 5ea77a75dd2d2158401331879f3c8f47940a732c (patch) | |
tree | d89dc06e9f4850a900f161e25f84e922c4f86cc8 /contrib/ldapc++/src/debug.h | |
parent | Initial commit. (diff) | |
download | openldap-5ea77a75dd2d2158401331879f3c8f47940a732c.tar.xz openldap-5ea77a75dd2d2158401331879f3c8f47940a732c.zip |
Adding upstream version 2.5.13+dfsg.upstream/2.5.13+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'contrib/ldapc++/src/debug.h')
-rw-r--r-- | contrib/ldapc++/src/debug.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/contrib/ldapc++/src/debug.h b/contrib/ldapc++/src/debug.h new file mode 100644 index 0000000..e80b760 --- /dev/null +++ b/contrib/ldapc++/src/debug.h @@ -0,0 +1,33 @@ +// $OpenLDAP$ +/* + * Copyright 2000-2022 The OpenLDAP Foundation, All Rights Reserved. + * COPYING RESTRICTIONS APPLY, see COPYRIGHT file + */ + +#ifndef DEBUG_H +#define DEBUG_H +#include <iostream> +#include "config.h" +#define LDAP_DEBUG_NONE 0x0000 +#define LDAP_DEBUG_TRACE 0x0001 +#define LDAP_DEBUG_CONSTRUCT 0x0002 +#define LDAP_DEBUG_DESTROY 0x0004 +#define LDAP_DEBUG_PARAMETER 0x0008 +#define LDAP_DEBUG_ANY 0xffff + +#define DEBUGLEVEL LDAP_DEBUG_ANY + +#define PRINT_FILE \ + std::cerr << "file: " __FILE__ << " line: " << __LINE__ + +#ifdef WITH_DEBUG +#define DEBUG(level, arg) \ + if((level) & DEBUGLEVEL){ \ + std::cerr << arg ; \ + } +#else +#undef DEBUG +#define DEBUG(level,arg) +#endif //WITH_DEBUG + +#endif // DEBUG_H |