DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=28761>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=28761

mod_jk logging: amall spelling improvement

           Summary: mod_jk logging: amall spelling improvement
           Product: Tomcat 3
           Version: 3.3.2 Final
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Minor
          Priority: Other
         Component: Connectors
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Hello,

while debugging mod_jk 1.2.6-dev I noticed a small grammer/typo in one of the
log messages in jk_worker.c. Nothing major at all, but I was annoyed by the output:
done  found a worker (with 2 spaces if not found) or
done did not found a worker (if found)

Patch will be attatched (including stripping of whitespaces at line ends)
This is the relevant change:

line 95 of jk_worker.c

-    jk_log(l, JK_LOG_DEBUG, "wc_get_worker_for_name, done %s found a worker\n", 
-        rc ? "" : "did not"); 
+    jk_log(l, JK_LOG_DEBUG, "wc_get_worker_for_name, done %sa worker\n",
+        rc ? "found " : "did not find ");
 
I know, it is just a nitpick, but nevertheless ...

Cheers,
Hans

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to