Skip to content

Commit

Permalink
remove log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
ksthicke committed May 12, 2024
1 parent 41c2474 commit 90988f7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions src/renderer/components/ChessGround.vue
Original file line number Diff line number Diff line change
Expand Up @@ -646,8 +646,6 @@ export default {
dropPiece (event, pieceType, color) {
this.board.dragNewPiece({ role: pieceType, color: color, promoted: false }, event)
this.selectedPiece = pieceType
console.log(`dropPiece: ${event} ${pieceType} ${color}`)
console.log(`dropPiece: ${this.board.getFen()}`)
},
extractMoves (move) {
const letters = move.split(/(\d+)/)
Expand Down Expand Up @@ -828,7 +826,6 @@ export default {
this.$store.dispatch('push', { move: uciMove, prev: prevMov })
this.updateHand()
this.afterMove()
console.log(this.turn)
}
}
},
Expand Down
2 changes: 0 additions & 2 deletions src/renderer/components/ChessPocket.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ export default {
if (pieceCount === 0) {
return
}
console.log(`pieceType: ${pieceType}`)
console.log(`color: ${color}`)
this.$emit('selection', event, pieceType, color)
}
}
Expand Down

0 comments on commit 90988f7

Please sign in to comment.