I am using https://mvnrepository.com/artifact/org.tinylog/tinylog-api/2.2.0 in our project.
I can configure my writer format the following way:
Configuration.set("writer", "console");
Configuration.set("writer.format", "{level}: {class-name}.{method}(): {message}");
But now I need a different output format for some loggers.
Is this possible with tinylog? If yes, can someone provide a short example how to do this?
Thanks ...