debug static method
Debug logging (diagnostic information)
Implementation
static void debug(
dynamic message, {
String tag = 'Reactiv',
Object? error,
StackTrace? stackTrace,
}) {
_log(
LogLevel.debug,
message,
tag: tag,
error: error,
stackTrace: stackTrace,
);
}