Class Logger

java.lang.Object
net.orbyfied.j8.util.logging.Logger

public class Logger extends Object
  • Field Details

    • name

      protected final String name
    • group

      protected final LoggerGroup group
    • tag

      protected String tag
    • stage

      protected String stage
    • out

      @Deprecated public final PrintStream out
      Deprecated.
    • err

      @Deprecated public final PrintStream err
      Deprecated.
    • prePipeline

      protected LogPipeline prePipeline
      The pre-pipeline, this pipeline is called synchronously before the record is posted to the logger worker. This should not do any heavy tasks.
    • pipeline

      protected LogPipeline pipeline
      The worker pipeline, this pipeline is called asynchronously by the logger worker. This is where you should do formatting and other heavy tasks.
    • outputs

      protected List<LogOutput> outputs
  • Method Details