debug static method
Logs a debug message in blue.
Use this for detailed information that is helpful during development or troubleshooting. These messages should only be shown when verbose logging is enabled.
Example:
Logger.debug('API response received: $response');
Implementation
static void debug(String message) {
print('${_blue}DEBUG: $message$_reset');
}