I love using this library but the logging functionality is not great. It does not include a named logger and just loggs to the root logger. This makes it very hard to use in larger projects where logging is necessary. There are also some print() statements that should be logs instead. For example the 'Starting camera thread.' text at startup.
so in conclusion:
- add a logger with proper name
- replace print() statements with logging messanges
I love using this library but the logging functionality is not great. It does not include a named logger and just loggs to the root logger. This makes it very hard to use in larger projects where logging is necessary. There are also some print() statements that should be logs instead. For example the 'Starting camera thread.' text at startup.
so in conclusion: