I have a log file main.log
where my every log message in the project will be logging into that file.
Now I want to create two more log files pull.log
and put.log
and move pull messages to pull.log and put message to put.log from the main.log file by using logback in java.
Any ideas?