diff --git a/scripts/server/misc.js b/scripts/server/misc.js index 0f82316a..f1f8e934 100644 --- a/scripts/server/misc.js +++ b/scripts/server/misc.js @@ -21,7 +21,7 @@ function getPositionCommand(command, params, client) { let position = getPlayerPosition(client); messagePlayerNormal(client, `Your position is: ${position.x.toFixed(2)}, ${position.y.toFixed(2)}, ${position.z.toFixed(2)}`); - logToConsole(LOG_DEBUG, `${getPlayerDisplayForConsole(client)}'s position is: ${position.x.toFixed(2)}, ${position.y.toFixed(2)}, ${position.z.toFixed(2)}`); + logToConsole(LOG_INFO, `${getPlayerDisplayForConsole(client)}'s position is: ${position.x.toFixed(2)}, ${position.y.toFixed(2)}, ${position.z.toFixed(2)}`); return true; }