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
from icecream import ic
ic.debug()
ic.info()
ic.warning()
ic()
OR
from icecream import ic_error
from icecream import ic_warning
from icecream import ic_debug
from icecream import ic_info
from icecream import ic
ic_debug()
ic_info()
ic_warning()
ic()
Using it like this will be very useful in projects.
Also, if the colors printed according to the logging level are changed, we will have a much more understandable print style.
The text was updated successfully, but these errors were encountered:
ic is a great library,
but I think it has one shortcoming.
When using it in a big project, it becomes critical to perform the print operation according to the logging level.
In my current codes, there is always a code add-on like the one below.
This is a big need to be added to the library!
OR
Using it like this will be very useful in projects.
Also, if the colors printed according to the logging level are changed, we will have a much more understandable print style.
The text was updated successfully, but these errors were encountered: