Change logging level
If you are experiencing issues with the application, change the logging level to get more information about the problem.
RoboHub-OAK provides a utility function to change the logging level, which can be used as follows:
1import logging
2from robothub_oak.utils import set_logging_level
3
4set_logging_level(logging.DEBUG) # specify the desired logging levelpython
After that, the logs will be visible in the console.