[Pcsclite-cvs-commit] CVS PCSC/src/PCSC

CVS User rousseau ludovic.rousseau@free.fr
Wed, 23 Feb 2005 02:48:32 -0700


Update of /cvsroot/pcsclite/PCSC/src/PCSC
In directory haydn:/tmp/cvs-serv7882

Modified Files:
	debuglog.h 
Log Message:
document Log1() instead of DebugLogA() in comments


--- /cvsroot/pcsclite/PCSC/src/PCSC/debuglog.h	2005/02/23 09:46:11	1.15
+++ /cvsroot/pcsclite/PCSC/src/PCSC/debuglog.h	2005/02/23 09:48:32	1.16
@@ -7,25 +7,25 @@
  *  David Corcoran <corcoran@linuxnet.com>
  *  Ludovic Rousseau <ludovic.rousseau@free.fr>
  *
- * $Id: debuglog.h,v 1.15 2005/02/23 09:46:11 rousseau Exp $
+ * $Id: debuglog.h,v 1.16 2005/02/23 09:48:32 rousseau Exp $
  */
 
 /*
- * log message is sent to syslog, stdout or stderr depending on --debug
+ * log message is sent to syslog or stderr depending on --foreground
  * command line argument
  *
- * DebugLogA("text");
- *  log "text"
+ * Log1(priority, "text");
+ *  log "text" with priority level priority
  *
- * DebugLogB("text: %d", 1234);
+ * Log2(priority, "text: %d", 1234);
  *  log "text: 1234"
  * the format string can be anything printf() can understand
  *
- * DebugLogC("text: %d %d", 1234, 5678);
+ * Log3(priority, "text: %d %d", 1234, 5678);
  *  log "text: 1234 5678"
  * the format string can be anything printf() can understand
  *
- * DebugXxd(msg, buffer, size);
+ * LogXxd(priority, msg, buffer, size);
  *  log "msg" + a hex dump of size bytes of buffer[]
  *
  */