Skip to content

Commit

Permalink
Merge pull request #1079 from hcoles/feature/jboss_logging
Browse files Browse the repository at this point in the history
avoid jboss logging by default
  • Loading branch information
hcoles committed Aug 22, 2022
2 parents b2b365d + 1c7f485 commit 2f181b6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Expand Up @@ -242,6 +242,12 @@ public void shouldDefaultLoggingPackagesToDefaultsDefinedByDefaultMutationConfig
assertEquals(ReportOptions.LOGGING_CLASSES, actual.getLoggingClasses());
}

@Test
public void shouldAvoidJBossLoggingByDefault() {
final ReportOptions actual = parseAddingRequiredArgs();
assertThat(actual.getLoggingClasses()).contains("org.jboss.logging");
}

@Test
public void shouldParseCommaSeparatedListOfClassesToAvoidCallTo() {
final ReportOptions actual = parseAddingRequiredArgs("--avoidCallsTo",
Expand Down
Expand Up @@ -70,7 +70,8 @@ public class ReportOptions {
"org.apache.log4j",
"org.apache.logging.log4j",
"org.slf4j",
"org.apache.commons.logging");
"org.apache.commons.logging",
"org.jboss.logging");

private Collection<String> targetClasses;
private Collection<String> excludedMethods = Collections
Expand Down

0 comments on commit 2f181b6

Please sign in to comment.