LogRunner is a very simple API for writing Tab Separated logs to a file system.
You can install this using maven with the following maven configuration.
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <activeProfiles> <activeProfile>github</activeProfile> </activeProfiles> <profiles> <profile> <id>github</id> <repositories> <repository> <id>central</id> <url>https://repo1.maven.org/maven2</url> <releases><enabled>true</enabled></releases> <snapshots><enabled>true</enabled></snapshots> </repository> <repository> <id>github</id> <name>Jeffrey Riggle Apache Maven Packages</name> <url>https://maven.pkg.github.com/JeffreyRiggle/logrunner</url> </repository> </repositories> </profile> </profiles> <servers> <server> <id>github</id> <username>USERNAME</username> <password>TOKEN</password> </server> </servers> </settings>
<dependency> <groupId>com.ilusr.core.LogRunner</groupId> <artifactId>logrunner</artifactId> <version>2.0.10</version> </dependency>