After I replace the wildfly logmanager to logback as a module "property resource" can't read files from my project. It logs an error on startup
03:16:44,495 |-ERROR in ch.qos.logback.core.joran.action.PropertyAction - Could not find resource [my-file.properties].
logback.xml
<property resource="my-file.properties"/>
As I've seen, it should try to read from current thread classLoader(Loader.getTCL) not only getResourceBySelfClassLoader
|