Disable WARN DeviceStatus in Emulator Log

Hi all,
I am using the AXC F 1152 emulator (PLCnext Engineer Simulation 1.0) connected to PLCnext Engineer 2023.0. When viewing the output log:
tail -f /opt/plcnext/logs/Output.log
I am encountering the following two warnings continuously:
Arp.Device.Interface.Internal.DeviceStatus WARN - DeviceStatus: Ident “Status.Board.Humidity” not found Arp.Device.Interface.Internal.DeviceStatus WARN - DeviceStatus: Ident “Status.Board.Temperature.Centigrade” not found
This warning makes sense as in the device tab, no board temp or humidity is reported.
image.pngNevertheless, these warning messages make debugging my program quite messy.
Is there a way to disable these warnings?

Kind Regards,
Joshua

Easiest solution I found is to use grep to remove the unnecessary messages:
tail -f /opt/plcnext/logs/Output.log | grep -vwE “(Humidity|Temperature)”

Hello Joshua,
I have forwarded your suggestion to the responsible product manager. Currently it is only possible to delete the unnecessary warnings and messages as described in your post above.
BR Eduard

Thanks for following up on this Eduard.