You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2 forms — full ?DBG("~p ~p", [Foo, Bar]) and short ?DBG({Foo, Bar})
second one can be taken as first one with automagically formed format string
every arg can be replaced with {lazy, Fun} — in this case alog_if:log_lazy is called instead of alog_if:log, or with {lazy, "Name", Fun} (in this case Name will be used as a name of resulting value in tuple expression)
new form: ?DBG(["foobar", ARBITRARY_EXPRESSION])
new macro: ?DBG_TC() that measures time of execution of list-expr and lazy funs
The text was updated successfully, but these errors were encountered:
2 forms — full ?DBG("~p ~p", [Foo, Bar]) and short ?DBG({Foo, Bar})
second one can be taken as first one with automagically formed format string
every arg can be replaced with {lazy, Fun} — in this case alog_if:log_lazy is called instead of alog_if:log, or with {lazy, "Name", Fun} (in this case Name will be used as a name of resulting value in tuple expression)
new form: ?DBG(["foobar", ARBITRARY_EXPRESSION])
new macro: ?DBG_TC() that measures time of execution of list-expr and lazy funs
The text was updated successfully, but these errors were encountered: