Apache Tika 1.24.1.
I read that there is a logging facility called log4j, but didn't find a quick to copy example. Does tika have some command line argument to save console logs to a file? Thanks.
Apache Tika 1.24.1.
I read that there is a logging facility called log4j, but didn't find a quick to copy example. Does tika have some command line argument to save console logs to a file? Thanks.
You can configure log4j used in Tika Server using your own custom configuration file. For example, you can write a custom log4j.properties file like this:
Then you can specify it's location on the command line using the log4j.configuration system property. This can be used to load files from disk (using file: prefix), or placing the file within the configured classpath (useful if you are already doing tika-config.xml changes).
In this example, if I placed the above custom log4j.properties file next to my Tika Server JAR file I could run the following:
This will then log using the settings specified in the configuration - which in this example is to a file.
You can use both the properties and XML based formats for log4j configuration using this approach.
There is more information to be found on logging in Apache Tika here.