Tagged Questions

log4j FileAppender appends log events to a file. More details at apache wiki: http://wiki.apache.org/logging-log4j/FileAppender

learn more… | top users | synonyms

4
votes
1answer
1k views

Log4Net FileAppender not thread safe?

I need to log to a file because the customer doesn't have a console of something where I can log to with log4net. Now I read that the FileAppender is not thread safe. Is there anyhow a way to log to ...
3
votes
3answers
2k views

Writing to a log4net FileAppender with multiple threads performance problems

TickZoom is a very high performance app which uses it's own parallelization library and multiple O/S threads for smooth utilization of multi-core computers. The app hits a bottleneck where users need ...
3
votes
2answers
1k views

Can two log4j fileappenders write to the same file?

Forget for a second the question of why on earth would you do such a thing - if, for whatever reason, two FileAppenders are configured with the same file - will this setup work?
2
votes
2answers
138 views

log4net - FileAppender writing new entries at the beginning of file

Is is possible to configure FileAppender in log4net to add new entries at the beginning of log file? Currently it is adding entries at the end and reading newest entries requires scrolling whole log ...
2
votes
5answers
1k views

Log4Net and logging from parallel instances

I'm using log4net in my project and there is one problem. The major function of the program takes a long time and I use logging to save information about it. I use FileAppender for saving log to file. ...
1
vote
2answers
187 views

log4j:Appender to print the log Statements

Hello sir: When server is started ,the log files print the output statement..how can i print the log files in my own file?
0
votes
1answer
99 views

Make log4j DailyRollingFileAppender roll over date OR size, whichever comes first

I know that log4j provides RollingFileAppender and DailyRollingFileAppender classes, however, DailyRollingFileAppender does not support MaxFileSize property. How do I tweak the behavior of log4j so ...
0
votes
0answers
138 views

log4j FileAppender using FileDatePatternConverter

Trying to use a pattern for filename in config such as: <appender name="FileAppender" class="org.apache.log4j.FileAppender"> <param name="File" ...
0
votes
2answers
656 views

log4net fileappender not creating log-file.txt in Outlook ThisAddIn.cs

I can't see what is wrong here. I just want to get log4net writing to a log file with my Outlook AddIn. I have the following in my app.config file: <?xml version="1.0" encoding="utf-8" ?> ...
0
votes
3answers
486 views

Java logback FileAppender file pattern

I have appender like this. <appender name="Action.FileAppender" class="ch.qos.logback.core.FileAppender"> <file>logs\\${date}\\${thread}.log</file> <encoder> ...
0
votes
2answers
84 views

Logging via FileAppender

here is an easy question coming: i am trying to use log4net to log the infos on a file. i wrote < file value="log-file.txt" /> into my appender tag in app.config. and now wondering where the ...
0
votes
1answer
490 views

log4j, fileappender and tomcat6 logs question

I have seen many questions about the above topics but none that address this. I am trying to use log4j to log to a custom file in $CATALINA_BASE/logs/ directory. I configured the log4j.xml file and ...