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
To support other print function like loguru logger or logging logger, there are two methods:
Allow user to define customized print function in extension settings, the default setting is print, but you can change it to logger.debug.
User defines a alias name for customized print function, here is print = logger.debug, I tested it, it works:
But this require change the print format, e.g. change print("==>> a: ", a) to print(f"==>> a: {a}")
Which one do you prefer, I prefer the second method
Be deeply grateful!!
The text was updated successfully, but these errors were encountered: