Skip to content

Commit

Permalink
[SCM-972] Deprecate SCM Logger in favor of SLF4J
Browse files Browse the repository at this point in the history
This closes #129
  • Loading branch information
michael-o committed May 19, 2022
1 parent 35dcd5c commit 718bd03
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 1 deletion.
Expand Up @@ -22,6 +22,7 @@
/**
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
*/
@Deprecated
public class DefaultLog
implements ScmLogger
{
Expand Down
Expand Up @@ -26,6 +26,7 @@
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
*
*/
@Deprecated
public class ScmLogDispatcher
implements ScmLogger
{
Expand Down
Expand Up @@ -23,6 +23,7 @@
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
*
*/
@Deprecated
public interface ScmLogger
{
boolean isDebugEnabled();
Expand Down
Expand Up @@ -30,8 +30,9 @@ public class BasicScmManager
extends AbstractScmManager
{
/** {@inheritDoc} */
@Deprecated
protected ScmLogger getScmLogger()
{
return new DefaultLog();
}
}
}
Expand Up @@ -71,6 +71,7 @@ public interface ScmProvider
*
* @param logger The logger
*/
@Deprecated
void addListener( ScmLogger logger );

boolean requiresEditMode();
Expand Down
Expand Up @@ -26,6 +26,7 @@
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
*
*/
@Deprecated
public class PlexusLogger
implements ScmLogger
{
Expand Down

0 comments on commit 718bd03

Please sign in to comment.