is your problem. That tells your Erlang node to turn off logging to the terminal and to plain text files. According to the manual, you can set it to either
tty
or to get log output.
You also have this in your config, though:
, %% dirs, %% 10M per log file.
That makes your Erlang node save error messages in a binary format in multiple files (hence mf
) in ./logs
. You can use the report browser (section 2.5, "Report Browser") to access them.