Output stream configuration from lucee-server.xml is not working as expected

OS : Linux 4.14.281-212.502.amzn2.aarch64 (also x86_64)
Java Version : OpenJDK Runtime Environment Corretto-11.0.15.9.1 (build 11.0.15+9-LTS)
Tomcat Version : 9.0.58-1
Lucee Version : 5.3.9.141 and 5.3.8.206

Lucee does not seem to respect the system output stream configuration from lucee-server.xml. With both 5.3.8.206 and 5.3.9.141, Lucee is sending output to {lucee-config}/logs/out.log and err.log regardless of the setting in lucee-server.xml.

I’ve tried setting the streams in <system err="system" out="system"/> to system (current default), default (old default), and null. In every case, I still end up with the output going into out.log.

Any assistance would be appreciated. Current snippet from lucee-server.xml is included below. All other config seems to work as expected.

	<!--
	system:

		out (output-stream)
			- system (write out to default output stream)
			- log (logs to out.log in lucee-server/context/logs)
			- null (write no output)
			- class:<class> (class that implements java.io.PrintWriter)
			- file:<file> (file to write in)
	
		err (err-stream)
			- system (write out to default output stream)
			- log (logs to err.log in lucee-server/context/logs)
			- null (write no output)
			- class:<class> (class that implements java.io.PrintWriter)
			- file:<file> (file to write in)
	-->
	<system err="system" out="null"/>