...
- A default logging configuration is now bundled into OLE FS
- This means logging will work out of the box without requiring you to point OLE FS at an external log4j.properties file
- You can still override the default log4j configuration if desired
- set the property
No Format ole.fs.log4j.override=true
- This can be set as a system property
- Or as a property in one of the configuration files that gets automatically loaded
- create a log4j.properties containing your custom settings at
No Format ~/.kuali/ole/fs/log4j.properties
- set the property
- Any logging added to the application from now on should use SLF4J
- As code gets updated, log4j logging statements should get replaced with SLF4J logging statements
...