Update of /cvsroot/naviserver/naviserver/nsd
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18637/nsd
Modified Files:
log.c
Log Message:
Added Ns_VALog with varargs interface
Index: log.c
===================================================================
RCS file: /cvsroot/naviserver/naviserver/nsd/log.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** log.c 17 Oct 2005 11:43:58 -0000 1.11
--- log.c 27 Oct 2005 10:34:27 -0000 1.12
***************
*** 286,289 ****
--- 286,311 ----
va_end(ap);
}
+
+ /*
+ *----------------------------------------------------------------------
+ *
+ * Ns_VALog --
+ *
+ * Send a message to the server log (varargs interface)
+ *
+ * Results:
+ * None.
+ *
+ * Side effects:
+ * None.
+ *
+ *----------------------------------------------------------------------
+ */
+
+ void
+ Ns_VALog(Ns_LogSeverity severity, CONST char *fmt, va_list *vaPtr)
+ {
+ Log(severity, fmt, *vaPtr);
+ }
|