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
ATM, the "logging" is based on a notify function which is a simple wrapper around print.
We should move to logging, which will bring us these advantages:
less custom code
still very easy
while using print in a UI may have sense, using print from a library sucks. Using logging is the way to go!
(optional) it would be possible to output log messages (of a certain gravity) graphically using libnotify
The text was updated successfully, but these errors were encountered:
ATM, the "logging" is based on a
notify
function which is a simple wrapper aroundprint
.We should move to logging, which will bring us these advantages:
print
in a UI may have sense, usingprint
from a library sucks. Usinglogging
is the way to go!The text was updated successfully, but these errors were encountered: