Can tinylog use the same configuration file for multiple applications (war's), but write the log based on the display-name in the web.xml?
Right now, all our web applications use log4j and share a configuration file. The log files are written with the following variable in the file name:
<RollingFile fileName="${web:servletContextName:-unknownContext}-${env:COMPUTERNAME:-unknownComputer}.%d{yyyy-MM-dd}.log" >
</RollingFile>
This means when our application has a display name of svc1234_FancyService and runs on SERVER001 then the log is named:
svc1234_FancyServce-SERVER001.2022-01-04.log
Can this behaviour be replicated with tinylog 2.4+?