* Show the ThreadSSL in the debugging logs.
authorMichael Hampton <io_error@uncensored.citadel.org>
Wed, 5 Oct 2005 17:54:08 +0000 (17:54 +0000)
committerMichael Hampton <io_error@uncensored.citadel.org>
Wed, 5 Oct 2005 17:54:08 +0000 (17:54 +0000)
webcit/ChangeLog
webcit/webserver.c

index 69f049cc5b7aa09a05d455c70b78470abbf9e8fd..b53464a63213722580f01118ec1a33c777a888fd 100644 (file)
@@ -1,4 +1,7 @@
 $Log$
+Revision 625.33  2005/10/05 17:54:08  error
+* Show the ThreadSSL in the debugging logs.
+
 Revision 625.32  2005/09/30 20:57:27  ajc
 * Added "Display Name" (or as vCard calls it, "friendly name" or "fn") to
   the vCard editing screen.
@@ -3097,3 +3100,4 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index 1515ea08939f7691e9faa0db245e6e0ba67ab878..9b111ab13a564e89f9041414bbe34e5a7411e546 100644 (file)
@@ -575,6 +575,9 @@ int lprintf(int loglevel, const char *format, ...)
 {
        va_list ap;
 
+       if (ThreadSSL) {
+               fprintf(stderr, "[%d] ", ThreadSSL);
+       }
        if (loglevel <= verbosity) {
                va_start(ap, format);
                vfprintf(stderr, format, ap);