`I want to create separate files like following in my spring boot project using SLF4J :
myapp_log_trace which will contain only the trace level logs
myapp_log_debug which will contain only the debug level logs
myapp_log_info which will contain only the info level logs
myapp_log_warn which will contain only the warn level logs
myapp_log_error which will contain only the error level logs
Also I have to set max size for each file, say 10MB & these set of files should be created newly on daily basis so as to generate new files after every 24 hours
I cannot find min level and max level log options in SLF4J which are available in log4j `