getLogger function

Logger getLogger(
  1. String className
)

Implementation

Logger getLogger(String className) {
  return Logger(
      printer: SimpleLogPrinter(), output: ConsoleOutput(name: className));
}