Log exception when saving file fails

This commit is contained in:
AsamK 2022-02-04 15:43:20 +01:00
parent aadd908464
commit 285bfafdc1

View file

@ -768,7 +768,7 @@ public class SignalAccount implements Closeable {
fileChannel.force(false); fileChannel.force(false);
} }
} catch (Exception e) { } catch (Exception e) {
logger.error("Error saving file: {}", e.getMessage()); logger.error("Error saving file: {}", e.getMessage(), e);
} }
} }
} }