in case of parse error report the token on Android

This commit is contained in:
kr.angelov
2013-10-07 10:11:41 +00:00
parent 8efe22542a
commit d327697605

View File

@@ -117,7 +117,7 @@ public class Translator {
return output;
} catch (ParseError e) {
Log.e(TAG, "Parse error: " + e);
return "parse error"; // TODO: no no no
return "parse error: " + e.getMessage(); // TODO: no no no
}
}