From 306eb409595cabf09d9e3a803d8cbfa499708318 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Zurcher?= Date: Tue, 29 Mar 2016 16:31:01 +0200 Subject: DB: fix debug msg --- core/src/ch/asynk/rustanddust/util/DB.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/ch/asynk/rustanddust/util/DB.java b/core/src/ch/asynk/rustanddust/util/DB.java index ef24c79..7b5a661 100644 --- a/core/src/ch/asynk/rustanddust/util/DB.java +++ b/core/src/ch/asynk/rustanddust/util/DB.java @@ -262,13 +262,13 @@ public class DB public boolean storeGameState(int game, int turn, int player, String state) { - RustAndDust.debug("storeStateGame"); + RustAndDust.debug("storeGameState"); try { String hash = getDigest(state); if (hash == null) return false; exec(String.format(STORE_GAME_STATE, turn, player, state, hash, game)); } catch (SQLiteGdxException e) { - RustAndDust.error("storeStateGame"); + RustAndDust.error("storeGameState"); return false; } return true; -- cgit v1.1-2-g2b99