BaseSchemaEntity is marked as Serializable but throws exception when trying to
serialize because the logger is not Serializable:
protected final Logger LOG = Logger.getLogger(getClass().getCanonicalName());
FIX for this is to make the logger transient:
protected transient final Logger LOG =
Logger.getLogger(getClass().getCanonicalName());
Please incorporate the fix in the next release.
Thanks
Original issue reported on code.google.com by a...@callapp.com on 29 Apr 2012 at 12:56
Original issue reported on code.google.com by
a...@callapp.com
on 29 Apr 2012 at 12:56