Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@

/**
* @author jdcasey
*
* @deprecated Use SLF4J directly
*/
@Deprecated
public class DefaultLog
implements Log
{
Expand Down Expand Up @@ -128,4 +131,4 @@ public boolean isErrorEnabled()
return logger.isErrorEnabled();
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@
* </td>
* </tr>
* </table>
* <p>This is only a small set of all the options. A complete list can be found at
* <p>This is only a small set of all the options. A complete list can be found at
* <a href="https://maven.apache.org/components/plugin-tools/maven-plugin-tools-annotations/index.html" target="_blank">
* Maven Plugin Tool for Annotations</a>.
* Maven Plugin Tool for Annotations</a>.
*
* @see <a href="https://maven.apache.org/guides/plugin/guide-java-plugin-development.html" target="_blank">Guide to Developing Java Plugins</a>
* @see <a href="https://maven.apache.org/guides/mini/guide-configuring-plugins.html" target="_blank">Guide to Configuring Plug-ins</a>
Expand All @@ -149,6 +149,10 @@ public abstract class AbstractMojo
/** Plugin container context */
private Map pluginContext;

/**
* @deprecated Use SLF4J directly
*/
@Deprecated
@Override
public void setLog( Log log )
{
Expand All @@ -167,7 +171,9 @@ public void setLog( Log log )
* method directly whenever you need the logger, it is fast enough and needs no caching.
*
* @see org.apache.maven.plugin.Mojo#getLog()
* @deprecated Use SLF4J directly
*/
@Deprecated
@Override
public Log getLog()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,19 @@ void execute()
* and feedback to the user.
*
* @param log a new logger
*
* @deprecated Use SLF4J directly
*/
// TODO not sure about this here, and may want a getLog on here as well/instead
@Deprecated
void setLog( Log log );

/**
* Furnish access to the standard Maven logging mechanism which is managed in this base class.
*
* @return a log4j-like logger object which allows plugins to create messages at levels of <code>"debug"</code>,
* <code>"info"</code>, <code>"warn"</code>, and <code>"error"</code>. This logger is the accepted means to display
* information to the user.
* <code>"info"</code>, <code>"warn"</code>, and <code>"error"</code>.
* @deprecated Use SLF4J directly
*/
@Deprecated
Log getLog();
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
* rather than formatting first by calling <code>toString()</code>.
*
* @author jdcasey
*
* @deprecated Use SLF4J directly
*/
@Deprecated
public interface Log
{
/**
Expand Down Expand Up @@ -146,4 +149,4 @@ public interface Log
* @param error
*/
void error( Throwable error );
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
* Logger with "standard" output and error output stream.
*
* @author jdcasey
*
* @deprecated Use SLF4J directly
*/
@Deprecated
public class SystemStreamLog
implements Log
{
Expand Down Expand Up @@ -193,4 +196,4 @@ private void print( String prefix, CharSequence content, Throwable error )

System.out.println( "[" + prefix + "] " + content.toString() + "\n\n" + sWriter.toString() );
}
}
}