This release is alot of logging and some stability fixes for NetDaemon.
- New logging using Serilog, sadly Serilog does not support coloring on add-on but when providing the -t to docker run colors will be shown for docker users. see docker install instructions
- New version of HassClient that makes it possible to add logging of messages for debugging
- Loglevel can now be set on docker containers using environment var.
- Application name are shown i logging from user apps when using the Log command.
- Specific LogWarning, LogError etc. is now provided for more readable code. All Log use aspnet logging style
Log("Hello {name}", namevar);
do not use"Log($"Hello {namevar}")
since you miss out on strucured logging provided by ILogger interface and Serilog.