Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SystemStreamLog (0.22 sec)

  1. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/SystemStreamLog.java

    import java.io.PrintWriter;
    import java.io.StringWriter;
    
    /**
     * Logger with "standard" output and error output stream.
     *
     *
     * @deprecated Use SLF4J directly
     */
    @Deprecated
    public class SystemStreamLog implements Log {
        /**
         * @see org.apache.maven.plugin.logging.Log#debug(java.lang.CharSequence)
         */
        public void debug(CharSequence content) {
            print("debug", content);
        }
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

     * under the License.
     */
    package org.apache.maven.plugin;
    
    import java.util.Map;
    
    import org.apache.maven.plugin.logging.Log;
    import org.apache.maven.plugin.logging.SystemStreamLog;
    
    /**
     * Abstract class to provide most of the infrastructure required to implement a <code>Mojo</code> except for
     * the execute method.<br>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top