Re: Help Log4j Chainsaw - VFSLogFilePatternReceiver Usage

2011-07-22 Thread Scott Deboy
Chainsaw can automatically build a Chainsaw config file from fileappender entries in a log4j appender config file (both log4j.xml and log4j.properties formats)... By the way, I assume you can get sftp processing to work fine now as well, since it looks like you just had incorrect slashes in your U

RE: Help Log4j Chainsaw - VFSLogFilePatternReceiver Usage

2011-07-22 Thread Ding, Qin
Thank you Jake. Now with my file in C:/MyDocs/logs/mylog.log is loaded, it displays everything in Message column without splitting into different columns. On log4j event generating side, I have On log4j receiving side: my receiver's logFormat is [TIMESTAMP]

Re: Help Log4j Chainsaw - VFSLogFilePatternReceiver Usage

2011-07-22 Thread Jacob Kjome
The file isn't going to be loaded, nor written to, using an invalid URL with backslashes in it.  Use all forward slashes.  You have... "file:///C:\MyDocs\logs\mylog.log" It should be "file:///C:/MyDocs/logs/mylog.log" Or, simply... "file:/C:/MyDocs/logs/mylog.log" Jake On Thu, 21 Ju