Fixed
Details
Assignee
Zac SpitzerZac SpitzerReporter
Zac SpitzerZac SpitzerNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
NonePriority
New
Details
Details
Assignee
Zac Spitzer
Zac SpitzerReporter
Zac Spitzer
Zac SpitzerNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Priority
Created 5 April 2021 at 14:48
Updated 4 days ago
Resolved 3 February 2025 at 16:04
at the moment we have a lot of log files, which makes tracking down problems time consuming
add the option to define one (or possibly more) global override log destination(s) i
i.e. send all logs to a single log file directory, or log single file, perhaps also to a datasource (yes that adds overhead, but flexibility)
still use all the individual log file level configurations, esp LOG_LEVEL obvs
{ "sysprop": "lucee.logging.force.appender", "envvar": "LUCEE_LOGGING_FORCE_APPENDER", "desc": "If set, override the default log4j appender, which is usually resource (log files), use console to log all logs to console" }, { "sysprop": "lucee.logging.force.level", "envvar": "LUCEE_LOGGING_FORCE_LEVEL", "desc": "If set, override the default log4j log level for all logs, which is usually ERROR" }
i.e. the following configuration will log all lucee logs out to the console, which is great for docker
set lucee_logging_force_level=trace set lucee_logging_force_appender=console