Appdaemon error on init.d script

Raspberry pi with the All In one install of hass, working great. Went to start playing with app daemon, i can get it to work from the command line just fine. The init.d script keeps failing with the following error that I cannot understand.

Starting daemon: appdaemonTraceback (most recent call last):
File “/usr/local/bin/appdaemon”, line 11, in
load_entry_point(‘appdaemon==1.3.2’, ‘console_scripts’, ‘appdaemon’)()
File “/usr/local/lib/python3.4/dist-packages/appdaemon/appdaemon.py”, line 880, in main
raise ValueError(“STDOUT and STDERR not allowed with -d”)
ValueError: STDOUT and STDERR not allowed with -d

Any help would be great.

AppDaemon’s init script uses a daemonize() function to run in the background. If you are using this you cannot send the logfiles to STDOUT or STDERR - to fix this you need to add filenames for logfile and errorfile in your configuration file.

Thanks! I will give it a shot