- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for SystemStreamLog (0.15 seconds)
-
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) */ @Override public void debug(CharSequence content) { print("debug", content); }
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 5.3K bytes - Click Count (0) -
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>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 7.4K bytes - Click Count (0)