Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert suppressed logging #24365

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions core/docker/default/etc/log.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,2 @@
# Enable verbose logging from Trino
#io.trino=DEBUG

# Reduce levels of some known noisy loggers
org.eclipse.jetty=ERROR
org.glassfish.jersey.server.ServerRuntime$Responder=OFF
io.airlift.concurrent.BoundedExecutor=OFF
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ public class TestingTrinoServer
Logging logging = Logging.initialize();
logging.setLevel("io.trino.event.QueryMonitor", Level.ERROR);
logging.setLevel("org.eclipse.jetty", Level.ERROR);
logging.setLevel("org.glassfish.jersey.server.ServerRuntime$Responder", Level.OFF);
logging.setLevel("io.airlift.concurrent.BoundedExecutor", Level.OFF);

// Trino server behavior does not depend on locale settings.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ public static DockerContainer createTrinoContainer(DockerFiles dockerFiles, File
.withCopyFileToContainer(forHostPath(dockerFiles.getDockerFilesHostPath()), "/docker/trino-product-tests")
.withCopyFileToContainer(forHostPath(dockerFiles.getDockerFilesHostPath("conf/trino/etc/jvm.config")), CONTAINER_TRINO_JVM_CONFIG)
.withCopyFileToContainer(forHostPath(dockerFiles.getDockerFilesHostPath("conf/trino/etc/secrets.toml")), CONTAINER_TRINO_SECRETS_CONFIG)
.withCopyFileToContainer(forHostPath(dockerFiles.getDockerFilesHostPath("conf/trino/etc/log.properties")), CONTAINER_TRINO_LOGGING_CONFIG)
.withCopyFileToContainer(forHostPath(dockerFiles.getDockerFilesHostPath("health-checks/trino-health-check.sh")), CONTAINER_HEALTH_D + "trino-health-check.sh")
// the server package is hundreds MB and file system bind is much more efficient
.withFileSystemBind(serverPackage.getPath(), "/docker/trino-server.tar.gz", READ_ONLY)
Expand Down

This file was deleted.

Loading