Improved logging

This commit is contained in:
M66B 2020-02-08 19:28:00 +01:00
parent 3e742111f4
commit 435167e687
1 changed files with 2 additions and 2 deletions

View File

@ -397,8 +397,8 @@ class Core {
try {
db.beginTransaction();
op.error = Log.formatThrowable(ex);
db.operation().setOperationError(op.id, op.error);
op.error = Log.formatThrowable(ex, false);
db.operation().setOperationError(op.id, Log.formatThrowable(ex));
if (message != null && !(ex instanceof IllegalArgumentException))
db.message().setMessageError(message.id, Log.formatThrowable(ex));