]> git.sur5r.net Git - openldap/blobdiff - contrib/ldapc++/src/debug.h
Merge remote branch 'mdb/mdb.master'
[openldap] / contrib / ldapc++ / src / debug.h
index 8a5b14e317adc644471b20b5b7ddd5f64d61be6c..a2af50fc49b5f3f07f8bbb971f77ee2aaafb256d 100644 (file)
@@ -1,28 +1,29 @@
+// $OpenLDAP$
 /*
- * Copyright 2000, OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 2000-2011 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 -1
+#define LDAP_DEBUG_ANY          0xffff 
 
 #define DEBUGLEVEL LDAP_DEBUG_ANY
 
 #define PRINT_FILE     \
-       cerr << "file: " __FILE__  << " line: " << __LINE__ 
+       std::cerr << "file: " __FILE__  << " line: " << __LINE__ 
 
 #ifdef WITH_DEBUG
 #define DEBUG(level, arg)       \
     if((level) & DEBUGLEVEL){     \
-        cerr  << arg ;          \
+        std::cerr  << arg ;          \
     } 
 #else
 #undef DEBUG