mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-23 07:27:22 +01:00
log stash when exception caught
This commit is contained in:
parent
a1719f14b2
commit
fe2d8712d4
1 changed files with 3 additions and 2 deletions
|
@ -250,8 +250,9 @@ public class NetLaunchInfo implements Serializable {
|
|||
dupeMode = null != val && Integer.decode(val) != 0;
|
||||
}
|
||||
calcValid();
|
||||
} catch ( Exception e ) {
|
||||
Log.e( TAG, "unable to parse \"%s\"", data.toString() );
|
||||
} catch ( Exception ex ) {
|
||||
Log.e( TAG, "%s: (in \"%s\")", ex, data.toString() );
|
||||
DbgUtils.printStack( TAG, ex );
|
||||
}
|
||||
}
|
||||
calcValid();
|
||||
|
|
Loading…
Add table
Reference in a new issue