Skip to content

Commit f3adca8

Browse files
committed
temporarily increase log level to debug CI test failures
1 parent f745fff commit f3adca8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

org.eclipse.m2e.jdt/src/org/eclipse/m2e/jdt/internal/launch/MavenRuntimeClasspathProvider.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,12 +289,12 @@ private void addMavenSurefirePluginProviderDependencies(Set<IRuntimeClasspathEnt
289289
try {
290290
Version version = new GenericVersionScheme().parseVersion(mojoExecution.getPlugin().getVersion());
291291
if(version.compareTo(MIN_SUREFIRE_VERSION) < 0) {
292-
log.debug(
292+
log.error(
293293
"Skipping adding Maven Surefire Plugin dependencies for MojoExecution id {} of plugin {} as its version {} is below 2.22.1",
294294
mojoExecution.getExecutionId(), mojoExecution.getPlugin().getId(),
295295
mojoExecution.getPlugin().getVersion());
296296
} else {
297-
log.debug("Adding Maven Surefire Plugin dependencies for MojoExecution id {} of plugin {}",
297+
log.error("Adding Maven Surefire Plugin dependencies for MojoExecution id {} of plugin {}",
298298
mojoExecution.getExecutionId(), mojoExecution.getPlugin().getId());
299299
addMavenSurefirePluginProviderDependencies(resolved, mojoExecution, context, monitor);
300300
surefireDependenciesAdded = true;
@@ -310,7 +310,7 @@ private void addMavenSurefirePluginProviderDependencies(Set<IRuntimeClasspathEnt
310310
// use legacy mechanism to add junit5 dependencies for junit5 launches when surefire plugin is not used or below 2.22.1
311311
if(!surefireDependenciesAdded && TESTKIND_ORG_ECLIPSE_JDT_JUNIT_LOADER_JUNIT5
312312
.equals(configuration.getAttribute(ATTRIBUTE_ORG_ECLIPSE_JDT_JUNIT_TEST_KIND, ""))) {
313-
log.debug(
313+
log.error(
314314
"Adding missing JUnit5 execution dependencies for JUnit5 launch configuration via legacy method as no suitable Maven Surefire Plugin execution was found");
315315
addMissingJUnit5ExecutionDependencies(resolved, monitor, javaProject);
316316
}

0 commit comments

Comments
 (0)