Skip to content

Commit

Permalink
Update log levels
Browse files Browse the repository at this point in the history
  • Loading branch information
bcopy committed Oct 12, 2024
1 parent 4f39a4a commit 92cc70d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scene-tutorial/TutorialSceneController.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class TutorialSceneController {

player.properties[update.propertyId] = update.value;

log.info(`Updating player property: ${update.nodeId}/${update.propertyId} = ${update.value}`);
log.debug(`Updating player property: ${update.nodeId}/${update.propertyId} = ${update.value}`);

if (update.propertyId === 'terminal-id') {
this.updateTerminalToPlayerMap(player, update.value);
Expand All @@ -176,7 +176,7 @@ class TutorialSceneController {
}
// Add new mapping
this.terminalToPlayerMap.set(terminalId, player.nodeId);
log.info(`Updated terminal-to-player mapping: Terminal ${terminalId} -> Player ${player.nodeId}`);
log.debug(`Updated terminal-to-player mapping: Terminal ${terminalId} -> Player ${player.nodeId}`);
}

handleStateMachineUpdate(update) {
Expand Down

0 comments on commit 92cc70d

Please sign in to comment.