feat: changed server side state log to debug

This commit is contained in:
moonleay 2024-06-13 18:20:18 +02:00
parent 42737446b2
commit 5252d9abdf
Signed by: moonleay
GPG key ID: 82667543CCD715FB

View file

@ -32,7 +32,7 @@ object ServerEditorManager {
fun updateEditorState(playerUUID: UUID, editorState: EditorState) {
STATEMAP[playerUUID] = editorState
LOGGER.info("$playerUUID: ${editorState.editorMode} with ${editorState.editorModifier}")
LOGGER.debug("{}: {} with {}", playerUUID, editorState.editorMode, editorState.editorModifier)
}