Class SystemStreamLog

java.lang.Object
org.apache.maven.plugin.logging.SystemStreamLog
All Implemented Interfaces:
Log

@Deprecated public class SystemStreamLog extends Object implements Log
Deprecated.
Use SLF4J directly
Logger with "standard" output and error output stream.
Author:
jdcasey
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Deprecated.
    Send a message to the user in the debug error level.
    void
    debug(CharSequence content, Throwable error)
    Deprecated.
    Send a message (and accompanying exception) to the user in the debug error level.
    The error's stacktrace will be output when this error level is enabled.
    void
    Deprecated.
    Send an exception to the user in the debug error level.
    The stack trace for this exception will be output when this error level is enabled.
    void
    Deprecated.
    Send a message to the user in the error error level.
    void
    error(CharSequence content, Throwable error)
    Deprecated.
    Send a message (and accompanying exception) to the user in the error error level.
    The error's stacktrace will be output when this error level is enabled.
    void
    Deprecated.
    Send an exception to the user in the error error level.
    The stack trace for this exception will be output when this error level is enabled.
    void
    info(CharSequence content)
    Deprecated.
    Send a message to the user in the info error level.
    void
    info(CharSequence content, Throwable error)
    Deprecated.
    Send a message (and accompanying exception) to the user in the info error level.
    The error's stacktrace will be output when this error level is enabled.
    void
    info(Throwable error)
    Deprecated.
    Send an exception to the user in the info error level.
    The stack trace for this exception will be output when this error level is enabled.
    boolean
    Deprecated.
     
    boolean
    Deprecated.
     
    boolean
    Deprecated.
     
    boolean
    Deprecated.
     
    void
    warn(CharSequence content)
    Deprecated.
    Send a message to the user in the warn error level.
    void
    warn(CharSequence content, Throwable error)
    Deprecated.
    Send a message (and accompanying exception) to the user in the warn error level.
    The error's stacktrace will be output when this error level is enabled.
    void
    warn(Throwable error)
    Deprecated.
    Send an exception to the user in the warn error level.
    The stack trace for this exception will be output when this error level is enabled.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • SystemStreamLog

      public SystemStreamLog()
      Deprecated.
  • Method Details