Typical use cases Logging user activity in web app Useful links logback Chapter 8: Mapped Diagnostic Context log4j MDC class
3
votes
1answer
354 views
How to use MDC with thread pools?
In our software we extensively use MDC to track things like session IDs and user names for web requests. This works fine while running in the original thread. However, there's a lot of things that ...
2
votes
1answer
46 views
MDC not working with SLF4J
We use SLF4J (with log4j) as our logging framework. We are trying to leverage the MDC feature which as per online documentation is supported by Log4j.
MDC does not work when SLF4J is used. However, ...
1
vote
0answers
68 views
Java MDC mixing session data
I am using Log4j as a logging framework. I am using MDC to hold some values across application so that when finally do log and get those inside eventhelpers. But in case of error/Exception logs on ...
1
vote
1answer
64 views
How to detect syntax errors when debugging Firefox extensions
When working on a large Firefox plugin, I sometimes accidentally make a syntax error not caught by my editor. When this happens, then calling
Components.utils.import("resource://modules/Foo.js")
...
1
vote
2answers
2k views
Does Log4j SyslogAppender support MDC and NDC
Simple really, does Log4j SyslogAppender support MDC and NDC in the sense that the output is structured data i.e. uses the structured data features of the protocol?
Further, are there any limits on ...
0
votes
0answers
19 views
Set log level based on MDC value in log4j
I'm using log4j (via Pax logging in Apache Karaf) together with MDC. Using the sift appender I also direct logging to different log files based on an MDC value. What I haven't been able to figure out ...
0
votes
1answer
49 views
Logging username in log4j
I need to print username and client IP address in logs.but username is only prints for first thread using MDC in log4j.From next thread the values are printed as empty. can any one suggest how to ...
0
votes
2answers
205 views
Using MDC in log4j to dynamically name the log file
Is it possible some how to use MDC to name the log file at run time.
I have a single web application which is being called by different names at the same time using tomcat docbase. So i need to have ...
0
votes
1answer
54 views
mar file generation in MDC
I am trying to generate complete.mar file, in firefox build. when I try to generate complete.mar file, the following error occurs.
Sathi@HREF-22F4E8F33B /c/href/FF-5.1/tools/update-packaging
$ sh ...
0
votes
1answer
134 views
How to insert the username into MDC for the entire web request
I am trying to use a Mapped Diagnostic Context to add the username of the user making a page request to all relevant logging statements. However I have tried three different ways to make it work ...
0
votes
0answers
114 views
perf4J with MDC
Does anyone know if perf4J has support for log4j MDC. All my log statements are appended with MDC values, however the perf4J log statements don't show the MDC value.
Please see below, I expect ...
0
votes
1answer
470 views
mdc error when decrypting GPG message
I have a client and server system that regularly run scheduled tasks and communicate through xml files that have been encrypted by gpg. All required public keys have been successfully exchanged ...
0
votes
2answers
951 views
Log4j Dynamic Parameter
i have a j2ee web application running on spring framework and using log4j for logging. I have this line in my log4j.properties file. this will insert the logs in my database. How do I set a dynamic ...