summaryrefslogtreecommitdiffstats
path: root/core/src
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2016-03-29 16:31:01 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2016-03-29 16:31:01 +0200
commit306eb409595cabf09d9e3a803d8cbfa499708318 (patch)
tree8d2b7b7f404ffad6eea8749a0925b2a501eaec22 /core/src
parent96f927c4dbcda4b0964f0bc7eac1c31730b943cb (diff)
downloadRustAndDust-306eb409595cabf09d9e3a803d8cbfa499708318.zip
RustAndDust-306eb409595cabf09d9e3a803d8cbfa499708318.tar.gz
DB: fix debug msg
Diffstat (limited to 'core/src')
-rw-r--r--core/src/ch/asynk/rustanddust/util/DB.java4
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;