logVerbose method

void logVerbose(
  1. String message
)

Logs a message to the console if the logging command line argument is set to verbose.

Implementation

void logVerbose(String message) {
  if (commandLineArgs.loggingMode == ServerpodLoggingMode.verbose) {
    stdout.writeln(message);
  }
}