I want to develop a simple logger which sends logs to a server where all the logs are stored and displayed in graphs, etc.
The logger has to be parameterized since there is a structure given by the developed database for analyzing and displaying the stored logs.
The parameters for the logs are implemented with overloaded methods, for example:
mylog.error(String jobname, String whatever);
mylog.error(String jobname, String whatever, List<String> whatever);
This is how the logs are implemented by a developer when needed.
I wonder if I could use log4j for something like this?
Anyway, my own simple logging works fine, sending the logs in json to my server, where they are stored, etc.