All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scribe.writer.SystemErrWriter.scala Maven / Gradle / Ivy

The newest version!
package scribe.writer

import scribe.output.LogOutput
import scribe.output.format.OutputFormat
import scribe.{LogRecord, Logger}

/**
 * SystemErrWriter writes logs to System.err
 */
object SystemErrWriter extends Writer {
  override def write(record: LogRecord, output: LogOutput, outputFormat: OutputFormat): Unit =
    SystemWriter.write(Logger.system.err, output, outputFormat)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy