How can I visualize the console

In the appdaemon.yaml I redirected the logfile

log:
  logfile: /config/appdaemon/logs/appdaemon.log
  errorfile: /config/appdaemon/logs/error.log

I want to change it back to

log:
  logfile: STDOUT
  errorfile: /config/appdaemon/logs/error.log

I can’t figure out how to visualize the appdaemon console.
Can someone help me?

Why do you want to do this? What do you mean with visualize the console? Are you running AppDaemon in Docker?

I just want to follow whats happening in appdaemon without saving all the steps in a file. My configuration is:

arch armv7l
dev false
docker true
hassio true
os_name Linux
python_version 3.7.4
timezone Europe/Brussels
version 0.100.2
virtualenv false

You can tail -f the file to see the log updated in real time. There’s also a workaround to write the appdaemon log to the normal home assistant log. This topic might be interesting for you:

Thank You. Just what I was looking for.

1 Like