log stash when exception caught

This commit is contained in:
Eric House 2020-05-19 11:58:42 -07:00
parent a1719f14b2
commit fe2d8712d4

View file

@ -250,8 +250,9 @@ public class NetLaunchInfo implements Serializable {
dupeMode = null != val && Integer.decode(val) != 0; dupeMode = null != val && Integer.decode(val) != 0;
} }
calcValid(); calcValid();
} catch ( Exception e ) { } catch ( Exception ex ) {
Log.e( TAG, "unable to parse \"%s\"", data.toString() ); Log.e( TAG, "%s: (in \"%s\")", ex, data.toString() );
DbgUtils.printStack( TAG, ex );
} }
} }
calcValid(); calcValid();