diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2016-03-29 16:31:01 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2016-03-29 16:31:01 +0200 |
commit | 306eb409595cabf09d9e3a803d8cbfa499708318 (patch) | |
tree | 8d2b7b7f404ffad6eea8749a0925b2a501eaec22 | |
parent | 96f927c4dbcda4b0964f0bc7eac1c31730b943cb (diff) | |
download | RustAndDust-306eb409595cabf09d9e3a803d8cbfa499708318.zip RustAndDust-306eb409595cabf09d9e3a803d8cbfa499708318.tar.gz |
DB: fix debug msg
-rw-r--r-- | core/src/ch/asynk/rustanddust/util/DB.java | 4 |
1 files 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; |