Disable type inf logging by default

This commit is contained in:
Clément Fournier 2024-11-14 16:32:09 +01:00
parent 04dfb782f0
commit 2df68ed168
No known key found for this signature in database
GPG Key ID: 6F9389D8E390BD4C

View File

@ -22,7 +22,7 @@ public class JavaLanguageProperties extends JvmLanguagePropertyBundle {
PropertyFactory.enumProperty("xTypeInferenceLogging", PropertyFactory.enumProperty("xTypeInferenceLogging",
EnumUtils.getEnumMap(InferenceLoggingVerbosity.class)) EnumUtils.getEnumMap(InferenceLoggingVerbosity.class))
.desc("Verbosity of the type inference logging") .desc("Verbosity of the type inference logging")
.defaultValue(InferenceLoggingVerbosity.VERBOSE) .defaultValue(InferenceLoggingVerbosity.DISABLED)
.build(); .build();