[Pcsclite-cvs-commit] PCSC/src debuglog.h,1.6,1.7

rousseau@quantz.debian.org rousseau@quantz.debian.org
Tue, 02 Sep 2003 18:07:30 +0200


Update of /cvsroot/pcsclite/PCSC/src
In directory quantz:/tmp/cvs-serv8020

Modified Files:
	debuglog.h 
Log Message:
remove reference to USE_SYSLOG since it is replaced by --debug command
line argument


Index: debuglog.h
===================================================================
RCS file: /cvsroot/pcsclite/PCSC/src/debuglog.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- debuglog.h	4 Jun 2003 16:52:39 -0000	1.6
+++ debuglog.h	2 Sep 2003 16:07:27 -0000	1.7
@@ -14,18 +14,18 @@
 ********************************************************************/
 
 /*
+ * log message is sent to syslog, stdout or stderr depending on --debug
+ * command line argument
+ *
  * DebugLogA("text");
- *  send "text" to syslog if USE_SYSLOG is defined
- *  print to stderr "text" if USE_SYSLOG is NOT defined
+ *  log "text"
  *
  * DebugLogB("text: %d", 1234)
- *  send "text: 1234" to syslog if USE_SYSLOG is defined
- *  print to stderr "text: 1234" is USE_SYSLOG is NOT defined
+ *  log "text: 1234"
  * the format string can be anything printf() can understand
  *
  * DebugXxd(msg, buffer, size)
- *  send to syslog (if USE_SYSLOG is defined) or print to stderr
- *  "msg" + a hex dump of size bytes of buffer[]
+ *  log "msg" + a hex dump of size bytes of buffer[]
  *
  */