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
Executing warn(), if imported from @std/log, prints to the console. However, when imported from @std/log/warn, it doesn't print anything. I think this is because setup() is executed, as it's included in @std/log, but not executed as it's excluded from @std/log/warn. I believe the fix is to add import "@std/log/setup" to warn() and its sibling functions, like info(), etc.
The text was updated successfully, but these errors were encountered:
Executing
warn()
, if imported from@std/log
, prints to the console. However, when imported from@std/log/warn
, it doesn't print anything. I think this is becausesetup()
is executed, as it's included in@std/log
, but not executed as it's excluded from@std/log/warn
. I believe the fix is to addimport "@std/log/setup"
towarn()
and its sibling functions, likeinfo()
, etc.The text was updated successfully, but these errors were encountered: