Lets say I attach to a running Erlang application and I change the lager configuration from the console, by running:
lager:set_loglevel(lager_console_backend,"console.log", debug).
I then want to test it by issuing a command like:
lager:debug(<<"test">>).
But that won't work because Lager is implemented using parse tranformation at compile time.
Surely there must is a more verbose command which will work. Does such an instruction exist?