Adam Cameron
<cflog file="myLog" text="some stuff to log">
We have just noticed that one of our logs stopped logging a few days ago. Not throwing any errors about not being able to log; just: not writing to the log. if I stick a debug log entry in after the log entry above, the second log entry goes in fine:
<cflog file="myLog" text="some stuff to log"> <!--- not writing to log file --->
<cflog file="myLog2" text="some stuff to log"> <!--- IS writing to log file --->
Adam Cameron
myLog.log
will write the one next log entry it receives, then... no more.
We're on 5.3.9.133
, from a container built with the stock Lucee 5.3.9.133-nginx
Docker image.
Note: myLog
is not configured in Lucee admin, we are just writing to it via <cflog file="myLog">
Adam Cameron
Adam Cameron