MINDSDB_LOG_LEVEL
to set the desired logging level. This approach allows for dynamic adjustment of log verbosity without needing code modifications.DEBUG
: Detailed information, typically of interest only when diagnosing problems.INFO:
Confirmation that things are working as expected.WARNING
: An indication that something unexpected happened, or indicative of some problem in the near future.ERROR
: Due to a more serious problem, the software has not been able to perform some function.CRITICAL
: A serious error, indicating that the program itself may be unable to continue running.__name__
to automatically reflect the module’s name. This convention is crucial for pinpointing the origin of log messages.