Skip to content

Commit

Permalink
Enable debug logging for fault tolerant execution in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
losipiuk committed Nov 28, 2023
1 parent f21215e commit f4d34fc
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
import static com.google.common.base.Throwables.throwIfUnchecked;
import static com.google.common.base.Verify.verify;
import static com.google.inject.util.Modules.EMPTY_MODULE;
import static io.airlift.log.Level.DEBUG;
import static io.airlift.log.Level.ERROR;
import static io.airlift.log.Level.WARN;
import static io.airlift.testing.Closeables.closeAllSuppress;
Expand Down Expand Up @@ -234,6 +235,7 @@ private static void setupLogging()
logging.setLevel("org.hibernate.validator.internal.util.Version", WARN);
logging.setLevel(PluginManager.class.getName(), WARN);
logging.setLevel(CoordinatorDynamicCatalogManager.class.getName(), WARN);
logging.setLevel("io.trino.execution.scheduler.faulttolerant", DEBUG);
}

private static TestingTrinoServer createTestingTrinoServer(
Expand Down

0 comments on commit f4d34fc

Please sign in to comment.