We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Required feature to define custom logger by creating an object of the Logger
import cvlog import cv2 # image read using opencv img = cv2.imread("sample.png") cvlog.image(log.Level.ERROR, ing) #root logger # Custom logger log = cvlog.getLogger('some_example_logger') log.image(log.Level.ERROR, img)
The text was updated successfully, but these errors were encountered:
#45 Migrated log methods to Logger class
2d268e8
23ede3f
#45 Implemented simplified way of log level for cleaner syntax
f27e3e3
#45 Added test cases for legacy way for log level passing
793e2d9
#45 Updated html template for displaying logger name
84b9de5
6a22f94
#45 Fixed log rotation test failure
4336fd6
navarasu
No branches or pull requests
Required feature to define custom logger by creating an object of the Logger
The text was updated successfully, but these errors were encountered: