disable debug output
hey,
is there anyway to disable the debug output to console? I collect container logs into a log mgmt tool, this container is very chatty with debug logs.
I think it's just one of the diamond command line arguments in entrypoint.sh.
I believe diamond has hard-coded debug for stdout: https://github.com/python-diamond/Diamond/blob/master/src/diamond/utils/log.py#L38-L43
removing the -l option from the command line should make it a little less verbose. I am publishing that change now, let me know if you see improvement.
that worked for me. Now it feels too quiet :) This is definitely the preferred state, though.
Thanks!