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