debug static method
Log a debug message. Auto-initializes if needed.
Debug logs are for development debugging.
Implementation
static Future<void> debug(String message, {String? category, String? tag, Map<String, dynamic>? metadata}) async {
await _autoInitialize();
await instance._repository.debug(message, category: category, tag: tag, metadata: metadata);
}