You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 6, 2026. It is now read-only.
Setting the flush level to something higher than error doesn't work.
Also setting it though logging.properties file doesn't work com.google.cloud.logging.LoggingHandler.flushLevel=EMERGENCY
Error logs are flushed by default which causes massive slows down for that request overall
Profiling the system shows that most of the time are gone as a wall time on the flush call
We need a way to disable flushing for good.
Didn't try .setFlushLevel(Level.OFF);
Environment details
Steps to reproduce
Using JUL
Code example
Any additional information below
Related to:-
googleapis/google-cloud-java#2796
googleapis/google-cloud-java#4254
Setting the flush level to something higher than error doesn't work.
Also setting it though logging.properties file doesn't work
com.google.cloud.logging.LoggingHandler.flushLevel=EMERGENCYError logs are flushed by default which causes massive slows down for that request overall
Profiling the system shows that most of the time are gone as a wall time on the flush call
We need a way to disable flushing for good.
Didn't try .setFlushLevel(Level.OFF);