Hi all,
is it possible to roll log files on a daily basis?
Something similar to log4j and its DailyRollingFileAppender class in order to create logs such as
app.log.2016-10-30
app.log.2016-11-01
app.log.2016-11-02
app.log.2016-11-03
...
app.log
Hi all,
is it possible to roll log files on a daily basis?
Something similar to log4j and its DailyRollingFileAppender class in order to create logs such as
app.log.2016-10-30
app.log.2016-11-01
app.log.2016-11-02
app.log.2016-11-03
...
app.log
Hi,
There is no automatic facility for rotating log files, but if you look for “rotating all log files” in the doc you’ll see some info on how it is possible to achieve something similar using EPL or using “engine_management --rotateLogs” (or SIGHUP on Unix) together with OS tools like cron/scheduled tasks
Thank you Ben.
I managed to use the com.apama.correlator.Logging in the EPL code.