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
Wormholy calls swiftyInitialize() on applicationDidFinishLaunching event force enabling logging Wormholy.setEnabled(true).
So if Wormholy.setEnabled(false) call was made before it, it will be overridden.
As a simple solution I guess would be to change Wormholy.setEnabled(true) in swiftyInitialize() to Wormholy.setEnabled(isEnabled).
The text was updated successfully, but these errors were encountered:
Wormholy calls
swiftyInitialize()
onapplicationDidFinishLaunching
event force enabling loggingWormholy.setEnabled(true)
.So if
Wormholy.setEnabled(false)
call was made before it, it will be overridden.As a simple solution I guess would be to change
Wormholy.setEnabled(true)
inswiftyInitialize()
toWormholy.setEnabled(isEnabled)
.The text was updated successfully, but these errors were encountered: