From 0dc52ce559a3512dbc0a9807040d344290d74df6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20Jare=C5=A1?= <58428711+pj892031@users.noreply.github.com> Date: Tue, 3 Oct 2023 16:17:05 +0200 Subject: [PATCH] chore: Set log level for EhCache (V1) (#3120) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Pavel Jareš --- api-catalog-services/src/main/resources/application.yml | 4 ++-- api-catalog-services/src/test/resources/application.yml | 4 ++-- caching-service/src/main/resources/application.yml | 2 +- discovery-service/src/main/resources/application.yml | 4 ++-- gateway-service/src/main/resources/application.yml | 4 ++-- gateway-service/src/test/resources/application-test.yml | 2 +- gateway-service/src/test/resources/application.yml | 2 +- metrics-service/src/main/resources/application.yml | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/api-catalog-services/src/main/resources/application.yml b/api-catalog-services/src/main/resources/application.yml index be96d0d2b6..429af47863 100644 --- a/api-catalog-services/src/main/resources/application.yml +++ b/api-catalog-services/src/main/resources/application.yml @@ -33,7 +33,7 @@ logging: com.netflix.discovery.shared.transport.decorator.RedirectingEurekaHttpClient: OFF com.netflix.discovery.DiscoveryClient: OFF org.springframework.boot.web.embedded.tomcat.TomcatWebServer: INFO - net.sf.ehcache: WARN + org.ehcache: WARN # New Config org.apache: WARN #org.apache.catalina, org.apache.coyote, org.apache.tomcat @@ -194,7 +194,7 @@ logging: org.apache: INFO org.apache.http: DEBUG com.netflix: INFO - net.sf.ehcache: INFO + org.ehcache: INFO --- spring: diff --git a/api-catalog-services/src/test/resources/application.yml b/api-catalog-services/src/test/resources/application.yml index 9f2bdf5a1d..228a983e77 100644 --- a/api-catalog-services/src/test/resources/application.yml +++ b/api-catalog-services/src/test/resources/application.yml @@ -30,7 +30,7 @@ logging: com.netflix.discovery.shared.transport.decorator.RedirectingEurekaHttpClient: OFF com.netflix.discovery.DiscoveryClient: OFF org.springframework.boot.web.embedded.tomcat.TomcatWebServer: INFO - net.sf.ehcache: WARN + org.ehcache: WARN # New Config org.apache: WARN #org.apache.catalina, org.apache.coyote, org.apache.tomcat @@ -189,7 +189,7 @@ logging: org.apache: INFO org.apache.http: DEBUG com.netflix: INFO - net.sf.ehcache: INFO + org.ehcache: INFO --- spring: diff --git a/caching-service/src/main/resources/application.yml b/caching-service/src/main/resources/application.yml index 14c31c6f83..146cda751a 100644 --- a/caching-service/src/main/resources/application.yml +++ b/caching-service/src/main/resources/application.yml @@ -165,7 +165,7 @@ logging: com.netflix: INFO org.hibernate: INFO org.springframework.web.servlet.PageNotFound: WARN - net.sf.ehcache: INFO + org.ehcache: INFO org.springframework.cloud.netflix.zuul.filters.post.SendErrorFilter: INFO --- diff --git a/discovery-service/src/main/resources/application.yml b/discovery-service/src/main/resources/application.yml index 2fdbbb1572..91f351c329 100644 --- a/discovery-service/src/main/resources/application.yml +++ b/discovery-service/src/main/resources/application.yml @@ -11,7 +11,7 @@ logging: com.netflix.discovery.DiscoveryClient: OFF org.springframework.boot.web.embedded.tomcat.TomcatWebServer: INFO com.sun.jersey.server.impl.application.WebApplicationImpl: WARN - net.sf.ehcache: WARN + org.ehcache: WARN # New Config org.apache: WARN #org.apache.catalina, org.apache.coyote, org.apache.tomcat @@ -159,7 +159,7 @@ logging: org.apache.http: DEBUG com.netflix: INFO com.sun.jersey.server.impl.application.WebApplicationImpl: INFO - net.sf.ehcache: INFO + org.ehcache: INFO --- spring: diff --git a/gateway-service/src/main/resources/application.yml b/gateway-service/src/main/resources/application.yml index 9afc8971af..cffc9b769b 100644 --- a/gateway-service/src/main/resources/application.yml +++ b/gateway-service/src/main/resources/application.yml @@ -14,7 +14,7 @@ logging: org.zowe.apiml.gateway.error: INFO org.eclipse.jetty: WARN org.springframework.web.servlet.PageNotFound: ERROR - net.sf.ehcache: WARN + org.ehcache: WARN org.springframework.cloud.netflix.zuul.filters.post.SendErrorFilter: ERROR # New Config org.apache: WARN #org.apache.catalina, org.apache.coyote, org.apache.tomcat @@ -268,7 +268,7 @@ logging: com.netflix: INFO org.hibernate: INFO org.springframework.web.servlet.PageNotFound: WARN - net.sf.ehcache: INFO + org.ehcache: INFO org.springframework.cloud.netflix.zuul.filters.post.SendErrorFilter: INFO --- diff --git a/gateway-service/src/test/resources/application-test.yml b/gateway-service/src/test/resources/application-test.yml index bc73fa6164..9faaf2c2a3 100644 --- a/gateway-service/src/test/resources/application-test.yml +++ b/gateway-service/src/test/resources/application-test.yml @@ -228,7 +228,7 @@ logging: com.netflix: INFO org.hibernate: INFO org.springframework.web.servlet.PageNotFound: WARN - net.sf.ehcache: INFO + org.ehcache: INFO org.springframework.cloud.netflix.zuul.filters.post.SendErrorFilter: INFO --- diff --git a/gateway-service/src/test/resources/application.yml b/gateway-service/src/test/resources/application.yml index 4b7db854b4..a0ae5aa7c5 100644 --- a/gateway-service/src/test/resources/application.yml +++ b/gateway-service/src/test/resources/application.yml @@ -236,7 +236,7 @@ logging: com.netflix: INFO org.hibernate: INFO org.springframework.web.servlet.PageNotFound: WARN - net.sf.ehcache: INFO + org.ehcache: INFO org.springframework.cloud.netflix.zuul.filters.post.SendErrorFilter: INFO --- diff --git a/metrics-service/src/main/resources/application.yml b/metrics-service/src/main/resources/application.yml index e9e33a5ff6..1fbf14e3f5 100644 --- a/metrics-service/src/main/resources/application.yml +++ b/metrics-service/src/main/resources/application.yml @@ -151,7 +151,7 @@ logging: com.netflix: INFO org.hibernate: INFO org.springframework.web.servlet.PageNotFound: WARN - net.sf.ehcache: INFO + org.ehcache: INFO org.springframework.cloud.netflix.zuul.filters.post.SendErrorFilter: INFO ---