michael-o commented on code in PR #140:
URL: https://github.com/apache/maven-scm/pull/140#discussion_r878925721
##########
maven-scm-test/src/main/java/org/apache/maven/scm/ScmTckTestCase.java:
##########
@@ -112,14 +114,19 @@ protected List<String> getScmFileNames()
public abstract void initRepo()
throws Exception;
+ private static final Logger LOG = LoggerFactory.getLogger(
ScmTckTestCase.class );
+
@Before
public void checkScmPresence()
{
String scmProviderCommand = getScmProviderCommand();
if ( scmProviderCommand != null )
{
+ LOG.warn( "Checking for required SCM command \"{}\" --> {}",
+ scmProviderCommand, ScmTestCase.isSystemCmd(
scmProviderCommand ) );
assumeTrue( "Skipping tests because the required command " +
scmProviderCommand + " is not available.",
ScmTestCase.isSystemCmd( scmProviderCommand ) );
+ LOG.warn( "Required SCM command \"{}\" exists.",
scmProviderCommand );
Review Comment:
Why warn? Is this intermediate?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]