verbose static method
Implementation
static Future<void> verbose(String message, {String? category, String? tag, Map<String, dynamic>? metadata, bool shouldNotify = false}) async {
if (!instance._initialized) {
throw StateError('VooLogger must be initialized before use');
}
await instance._repository.verbose(message, category: category, tag: tag, metadata: metadata);
// Don't show toast for verbose logs - too low level
// Verbose logs are primarily for detailed debugging
}