Results 1 to 3 of 3
Thread: console appender to a text file
- 06-08-2009, 07:58 AM #1
console appender to a text file
Hi Folks,
i am having one opensource application that writes its log file to the console.
I would like to store it(the console output) in a text file.
Here is the code snippet of log4j.properties file:..can anybody help me in this please...
# The console appender
log4j.appender.stdout=org.apache.log4j.ConsoleAppe nder
# The console appender layout
log4j.appender.stdout.layout=org.apache.log4j.Patt ernLayout
log4j.appender.stdout.layout.ConversionPattern=${l ayout.medium}visit : www.yoteam.co.cc
- 06-25-2009, 05:40 AM #2
Member
- Join Date
- Jun 2008
- Posts
- 56
- Rep Power
- 0
I'm using the next code:
Java Code:log4j.rootLogger=DEBUG, console, rollingfile, .............................................. log4j.appender.rollingfile=org.apache.log4j.RollingFileAppender log4j.appender.rollingfile.layout=org.apache.log4j.PatternLayout log4j.appender.rollingfile.layout.ConversionPattern=%5p: %d{HH:mm:ss,SSS} [%t] (%c) - %m%n log4j.appender.rollingfile.File=core.log log4j.appender.rollingfile.MaxFileSize=1MB log4j.appender.rollingfile.MaxBackupIndex=1Try Controls4J - Advanced Swing Components.
- 06-25-2009, 02:47 PM #3
Redirect STDOUT to the file you want. You can do this in Java via (java.lang.System) or at the console when you call the application.
Don't forget to mark threads as [SOLVED] and give reps to helpful posts.
How To Ask Questions The Smart Way
Similar Threads
-
count character in text file as input file
By aNNuur in forum New To JavaReplies: 7Last Post: 03-25-2010, 04:01 PM -
Saving Console content to a file
By puk284 in forum Advanced JavaReplies: 2Last Post: 05-07-2009, 05:58 AM -
find and replace text from a text file
By gezzel in forum New To JavaReplies: 2Last Post: 09-19-2008, 04:04 PM -
How to read a text file from a Java Archive File
By Java Tip in forum Java TipReplies: 0Last Post: 02-08-2008, 09:13 AM -
how to write the output of the console to a file
By fred in forum New To JavaReplies: 1Last Post: 07-24-2007, 02:02 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks