Skip to content

Commit

Permalink
Change loading quest keys from info to debug.
Browse files Browse the repository at this point in the history
Please for the love of god use `debug` for information not important to the enduser when starting the server.
  • Loading branch information
KingRainbow44 authored Jul 26, 2022
1 parent 9781d5e commit 6ba4846
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/emu/grasscutter/data/ResourceLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ private static void loadQuests() {

Int2ObjectMap<QuestEncryptionKey> questEncryptionMap = GameData.getMainQuestEncryptionMap();
keys.forEach(key -> questEncryptionMap.put(key.getMainQuestId(), key));
Grasscutter.getLogger().info("loaded {} quest keys.", questEncryptionMap.size());
Grasscutter.getLogger().debug("Loaded {} quest keys.", questEncryptionMap.size());
} catch (Exception e) {
Grasscutter.getLogger().error("Unable to load quest keys.", e);
}
Expand Down

0 comments on commit 6ba4846

Please sign in to comment.