tarekahf opened a new issue, #28: URL: https://github.com/apache/logging-chainsaw/issues/28
I managed to use Chainsaw successfully to read a text based log file with the following configuration XML. The only problem that the file is loaded one line at a time and it is extremely slow. Any idea what is worng? ``` <?xml version="1.0" encoding="UTF-8"?> <log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="true"> <plugin class="org.apache.log4j.varia.LogFilePatternReceiver" name="/C:/apps/apache-chainsaw-2.1.0-standalone/sample.log"> <param name="appendNonMatches" value="true"/> <param name="autoReconnect" value="true"/> <param name="fileURL" value="file:/C:/apps/apache-chainsaw-2.1.0-standalone/sample.log"/> <param name="timestampFormat" value="yyyy.MM.dd,hh:mm:ss.SSS"/> <param name="logFormat" value="TIMESTAMP,CLASS,METHOD,THREAD, , , ,MESSAGE"/> <param name="name" value="/C:/apps/apache-chainsaw-2.1.0-standalone/sample.log"/> <param name="promptForUserInfo" value="false"/> <param name="tailing" value="true"/> <param name="waitMillis" value="1"/> </plugin> </log4j:configuration> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
