From cee5af6617780debcd672ac4e87ac7c04003ae12 Mon Sep 17 00:00:00 2001 From: Jonas_Jones <91549607+JonasunderscoreJones@users.noreply.github.com> Date: Wed, 10 Jan 2024 17:58:30 +0100 Subject: [PATCH] set default verbose logger to false --- src/main/java/me/jonasjones/mcwebserver/config/ModConfigs.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/jonasjones/mcwebserver/config/ModConfigs.java b/src/main/java/me/jonasjones/mcwebserver/config/ModConfigs.java index 8c1f077..8fbfbb6 100644 --- a/src/main/java/me/jonasjones/mcwebserver/config/ModConfigs.java +++ b/src/main/java/me/jonasjones/mcwebserver/config/ModConfigs.java @@ -45,7 +45,7 @@ public class ModConfigs { config.addKeyValuePair(new Pair<>("web.api", true), "whether or not the webserver api should be enabled or not"); config.addKeyValuePair(new Pair<>("web.api.adv", true), "whether or not the api should expose information such as player coordinates and inventory"); config.addKeyValuePair(new Pair<>("web.file.notSupported", "not_supported.html"), "the name of the html file for 'not supported' page"); - config.addKeyValuePair(new Pair<>("logger.verbose", true), "whether or not to log verbose output"); + config.addKeyValuePair(new Pair<>("logger.verbose", false), "whether or not to log verbose output"); } private static void assignConfigs() {