mirror of
https://github.com/home-assistant/supervisor.git
synced 2026-04-02 08:12:47 +01:00
* Use verbose log output for plug-ins All three plug-ins which support logging (dns, multicast and audio) should use the verbose log format by default to make sure the log lines are annotated with timestamp. Introduce a new flag default_verbose for advanced logs. * Use default_verbose for host logs as well Use the new default_verbose flag for advanced logs, to make it more explicit that we want timestamps for host logs as well.
9 lines
251 B
Python
9 lines
251 B
Python
"""Test multicast api."""
|
|
|
|
from supervisor.host.const import LogFormatter
|
|
|
|
|
|
async def test_api_multicast_logs(advanced_logs_tester):
|
|
"""Test multicast logs."""
|
|
await advanced_logs_tester("/multicast", "hassio_multicast", LogFormatter.VERBOSE)
|