printDebug function
Print a message to the console.
Log level: Debug
Use context to interpolate values into the message, e.g. 'User {id}' with {'id': '123'}.
Implementation
void printDebug(
dynamic message, {
Map<String, dynamic>? context,
bool alwaysPrint = false,
}) {
NyLogger.debug(message, context: context, alwaysPrint: alwaysPrint);
}