debug static method
Logs a debug/info message.
Implementation
static void debug(String heading, String content) {
LogitCore.container?.read(loggerProvider.notifier).addDebugLog(
heading: heading,
content: content,
level: DebugLogLevel.info,
);
}