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
Implement a basicConfig method that has the following keyword arguments:
level sets the lower bound on what log levels will be logged. Calls to log methods lower than the root level set here will simply do nothing, while those higher will execute as normal.
remaining keywords are deferred to the stdout logger built with the standard library.
The text was updated successfully, but these errors were encountered:
This should mirror the standard library:
Implement a
basicConfig
method that has the following keyword arguments:level
sets the lower bound on what log levels will be logged. Calls to log methods lower than the root level set here will simply do nothing, while those higher will execute as normal.The text was updated successfully, but these errors were encountered: