Package

sbt.internal

util

Permalink

package util

Visibility
  1. Public
  2. All

Type Members

  1. abstract class AbstractEntry extends Serializable

    Permalink
  2. abstract class BasicLogger extends AbstractLogger

    Permalink

    Implements the level-setting methods of Logger.

  3. class BufferedAppender extends AbstractAppender

    Permalink

    An appender that can buffer the logging done on it and then can flush the buffer to the delegate appender provided in the constructor.

    An appender that can buffer the logging done on it and then can flush the buffer to the delegate appender provided in the constructor. Use 'record()' to start buffering and then 'play' to flush the buffer to the backing appender. The logging level set at the time a message is originally logged is used, not the level at the time 'play' is called.

  4. class BufferedLogger extends BasicLogger

    Permalink

    A logger that can buffer the logging done on it and then can flush the buffer to the delegate logger provided in the constructor.

    A logger that can buffer the logging done on it and then can flush the buffer to the delegate logger provided in the constructor. Use 'startRecording' to start buffering and then 'play' from to flush the buffer to the backing logger. The logging level set at the time a message is originally logged is used, not the level at the time 'play' is called.

    This class assumes that it is the only client of the delegate logger.

  5. class ConsoleAppender extends AbstractAppender

    Permalink

    A logger that logs to the console.

    A logger that logs to the console. On supported systems, the level labels are colored.

    This logger is not thread-safe.

  6. class ConsoleLogger extends BasicLogger

    Permalink

    A logger that logs to the console.

    A logger that logs to the console. On supported systems, the level labels are colored.

  7. sealed trait ConsoleOut extends AnyRef

    Permalink
  8. class FilterLogger extends BasicLogger

    Permalink

    A filter logger is used to delegate messages but not the logging level to another logger.

    A filter logger is used to delegate messages but not the logging level to another logger. This means that messages are logged at the higher of the two levels set by this logger and its delegate.

  9. class FullLogger extends BasicLogger

    Permalink

    Promotes the simple Logger interface to the full AbstractLogger interface.

  10. final case class GlobalLogBacking(file: File, last: Option[File], newBackingFile: () ⇒ File) extends Product with Serializable

    Permalink

    Tracks the files that persist the global logging.

    Tracks the files that persist the global logging. file is the current backing file. last is the previous backing file, if there is one. newBackingFile creates a new temporary location for the next backing file.

  11. final case class GlobalLogging(full: ManagedLogger, console: ConsoleOut, backed: Appender, backing: GlobalLogBacking, newAppender: (ManagedLogger, PrintWriter, GlobalLogBacking) ⇒ GlobalLogging) extends Product with Serializable

    Permalink

    Provides the current global logging configuration.

    Provides the current global logging configuration.

    full is the current global logger. It should not be set directly because it is generated as needed from backing.newLogger. console is where all logging from all ConsoleLoggers should go. backed is the Logger that other loggers should feed into. backing tracks the files that persist the global logging. newLogger creates a new global logging configuration from a sink and backing configuration.

  12. final case class GlobalLogging1(full: Logger, console: ConsoleOut, backed: AbstractLogger, backing: GlobalLogBacking, newLogger: (PrintWriter, GlobalLogBacking) ⇒ GlobalLogging1) extends Product with Serializable

    Permalink
  13. class LoggerWriter extends Writer

    Permalink

    Provides a java.io.Writer interface to a Logger.

    Provides a java.io.Writer interface to a Logger. Content is line-buffered and logged at level. A line is delimited by nl, which is by default the platform line separator.

  14. class ManagedLogger extends Logger

    Permalink

    Delegates log events to the associated LogExchange.

  15. class MultiLogger extends BasicLogger

    Permalink
  16. final class ObjectEvent[A] extends Serializable

    Permalink
  17. final class StringEvent extends AbstractEntry with Serializable

    Permalink
  18. final case class StringTypeTag[A](key: String) extends Product with Serializable

    Permalink

    This is used to carry type information in JSON.

  19. final class SuccessEvent extends Serializable

    Permalink
  20. final class SuppressedTraceContext extends AnyRef

    Permalink
  21. final class TraceEvent extends AbstractEntry with Serializable

    Permalink

Value Members

  1. object AbstractEntry extends Serializable

    Permalink
  2. object BufferedAppender

    Permalink
  3. object ConsoleAppender

    Permalink
  4. object ConsoleLogger

    Permalink
  5. object ConsoleOut

    Permalink
  6. object EscHelpers

    Permalink
  7. object FullLogger

    Permalink
  8. object GlobalLogBacking extends Serializable

    Permalink
  9. object GlobalLogging extends Serializable

    Permalink
  10. object MainAppender

    Permalink
  11. object ObjectEvent extends Serializable

    Permalink
  12. object StackTrace

    Permalink
  13. object StringEvent extends Serializable

    Permalink
  14. object StringTypeTag extends Serializable

    Permalink
  15. object SuccessEvent extends Serializable

    Permalink
  16. object TraceEvent extends Serializable

    Permalink
  17. package codec

    Permalink

Ungrouped