<div dir="ltr">Hi Mark,<div><br></div><div>I'm not sure what the difference could be between dev an prod here, but if you can access your node, did you check that the logger configuration is as expected? logger:i() in OTP-21.3, or else logger:get_config(). Just to make sure nothing failed silently during startup. <br></div><div><br></div><div>Another thing though - are you using run_erl with your prod release? If so, given the file name specified for the default handler, you must make sure that run_erl does not have the same log directory as you handler, or else they will attempt writing to the same file. logger_disk_log_h has no mechanism to ensure that it's file descriptor is fresh (the inode has not been changed), so if run_erl writes something to the same file, then the next log event from logger_disk_log_h will just disappear :(  (logger_std_h has better protection against this, and from OTP-21.3 it also has log rotation.) But this is of course not related to the macros at all, so if everything works ok with logger:info(..) but not with the macro, then there must be something else going on anyway.</div><div><br></div><div>Regards</div><div>/siri</div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Den man. 25. mar. 2019 kl. 20:49 skrev Mark Geib <<a href="mailto:mark.geib.44@gmail.com">mark.geib.44@gmail.com</a>>:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div style="overflow-wrap: break-word;">Yes, here is the bottom of my sys.config.<div><br></div><div><div style="background-color:rgb(255,255,255);font-family:Menlo,Monaco,"Courier New",monospace;line-height:18px;white-space:pre-wrap"><div>{kernel,</div><div>    [{logger_level, info}, {logger,</div><div>      [{handler, default, logger_disk_log_h,</div><div>       #{config => #{file => "/var/log/asp2aj/erlang.log", type => wrap, max_no_files => 10, max_no_bytes => 1000000000},</div><div>         formatter => {logger_formatter, #{single_line => true, template => [time," ",mfa,":",line," ",pid," [",level,"] ",msg,"\n"]}}}</div><div>      }]</div><div>    }]</div><div>  }].</div></div></div><div><br></div><div>Mark.</div><div><br><div><br><blockquote type="cite"><div>On Mar 25, 2019, at 1:44 PM, Steve Strong <<a href="mailto:steve@srstrong.com" target="_blank">steve@srstrong.com</a>> wrote:</div><br class="gmail-m_-5411505577597807348Apple-interchange-newline"><div><div style="overflow-wrap: break-word;">Do you have the logger_level value set in your sys.config (or are you setting it in code)?  The ?LOG macros check that before logging…<div><br></div><div><div>-define(DO_LOG(Level,Args),</div><div>        case logger:allow(Level,?MODULE) of</div><div>            true -></div><div>                apply(logger,macro_log,[?LOCATION,Level|Args]);</div><div>            false -></div><div>                ok</div><div>        end).</div><div>-endif.</div><div><br></div><div>Cheers,</div><div><br></div><div>Steve</div><div><br><blockquote type="cite"><div>On 25 Mar 2019, at 19:41, Mark Geib <<a href="mailto:mark.geib.44@gmail.com" target="_blank">mark.geib.44@gmail.com</a>> wrote:</div><br class="gmail-m_-5411505577597807348Apple-interchange-newline"><div><div style="overflow-wrap: break-word;">I am using the default handler and formatter, i.e.: <div><br></div><div><div style="background-color:rgb(255,255,255);font-family:Menlo,Monaco,"Courier New",monospace;line-height:18px;white-space:pre-wrap"><div>[{handler, default, logger_disk_log_h,  % handler, HandlerId, Module,</div><div>  #{config => #{file => "/var/log/asp2aj/erlang.log", type => wrap, max_no_files => 10, max_no_bytes => 1000000000},</div><div>    formatter => {logger_formatter, #{single_line => true, template => [time," ",mfa,":",line," ",pid," [",level,"] ",msg,"\n"]}}}</div><div> }]</div><div></div></div><div><br></div><div><br></div><div>And my logging works fine previously when I was doing logger:info()...</div><div><br></div><div>Thanks,</div><div>Mark.</div><div><br></div><div><br><blockquote type="cite"><div>On Mar 25, 2019, at 1:32 PM, Fred Hebert <<a href="mailto:mononcqc@ferd.ca" target="_blank">mononcqc@ferd.ca</a>> wrote:</div><br class="gmail-m_-5411505577597807348Apple-interchange-newline"><div><div dir="ltr"><div>See if you are using any log formatters or handlers -- those may not be direct dependencies of your application, and therefore do not get included in the final release. You will need to add these dependencies to the release independently so that they are present to run and handle output.</div><div><br></div><div>The rebar3 shell and other interactive modes can dynamically load libraries from disk and won't show that little gotcha at all.<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Mar 25, 2019 at 1:47 PM Mark Geib <<a href="mailto:mark.geib.44@gmail.com" target="_blank">mark.geib.44@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">I have a problem where I see no logger output in a release built with rebar3 using the new ?LOG macros. If I use the logger: functions<br>
everything is working fine. Decided to change to use the macros in order to get able to include MFA, line number, etc. in templates.<br>
<br>
Also, doing a dev release build and then running interactively everything works fine with the ?LOG macros. It’s like the<br>
prod builds are missing something compared to dev build.<br>
<br>
Thanks in advance for any help.<br>
<br>
Mark.<br>
_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" rel="noreferrer" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
</blockquote></div>
</div></blockquote></div><br></div></div>_______________________________________________<br>erlang-questions mailing list<br><a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a><br><a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br></div></blockquote></div><br></div></div></div></blockquote></div><br></div></div>_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org" target="_blank">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" rel="noreferrer" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
</blockquote></div>