<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">So after some more debugging, it appears that if I use “debug” or “info” in either the sys.config logger config for the logging level, or as the level of log message I see nothing. If I use any of the other levels it appears to work as expected. All the combinations I tried worked as well, i.e. if I set the log level in the config to “notice” and then log with logger:emergency(), it works fine.<div class=""><br class=""></div><div class="">Mark.<br class=""><div><br class=""><blockquote type="cite" class=""><div class="">On Jul 9, 2018, at 1:33 AM, Siri Hansen <<a href="mailto:erlangsiri@gmail.com" class="">erlangsiri@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class="">Hi Mark, you just missed that the primary log level by default is 'notice', which means that 'info' is rejected by the primary log level check. If you do logger:notice("test message") instead, it should be printed. To even print 'info', set the kernel configuration parameter logger_level to 'info', 'debug' or 'all' in your sys config, or set it in runtime with logger:set_primary_config(level,Level).<div class=""><br class=""></div><div class="">Regards</div><div class="">/siri</div></div><br class=""><div class="gmail_quote"><div dir="ltr" class="">Den fre. 6. jul. 2018 kl. 20:44 skrev Mark Geib <<a href="mailto:mark.geib.44@gmail.com" class="">mark.geib.44@gmail.com</a>>:<br class=""></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space" class="">I decided to take a look at the new logger in R21, but I am not able to produce any output.<div class=""><br class=""></div><div class="">In my sys.config I have the following:</div><div class=""><font face="Andale Mono" class="">{kernel,<br class="">    [{logger,<br class="">      [{handler, default, logger_std_h,<br class="">       #{level => debug,<br class="">         config => #{type => {file,"log/erlang.log"}},<br class="">         formatter => {logger_formatter, #{template => [time," ",pid," ",msg,"\n"]}}}<br class="">      }]<br class="">    }]<br class=""> }</font></div><div class=""><font face="Andale Mono" class=""><br class=""></font></div><div class="">And in my code I do something like <font face="Andale Mono" class="">logger:info(“test message”)</font>, but I never see any output to the file. I see the file log/erlang.log created, but always empty.</div><div class=""><br class=""></div><div class="">I must be missing something, but I have read through the docs, quickly.</div><div class=""><br class=""></div><div class="">Any pointers would be appreciated.</div><div class=""><br class=""></div><div class="">Mark.</div></div>_______________________________________________<br class="">
erlang-questions mailing list<br class="">
<a href="mailto:erlang-questions@erlang.org" target="_blank" class="">erlang-questions@erlang.org</a><br class="">
<a href="http://erlang.org/mailman/listinfo/erlang-questions" rel="noreferrer" target="_blank" class="">http://erlang.org/mailman/listinfo/erlang-questions</a><br class="">
</blockquote></div>
</div></blockquote></div><br class=""></div></body></html>