mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
Improve logging
This commit is contained in:
parent
a9f1944636
commit
4a37227b95
1 changed files with 1 additions and 0 deletions
|
@ -66,6 +66,7 @@ public class MessageCache {
|
|||
if (cacheFile.equals(cachedMessage.getFile())) {
|
||||
return cachedMessage;
|
||||
}
|
||||
logger.debug("Moving cached message {} to {}", cachedMessage.getFile().toPath(), cacheFile.toPath());
|
||||
Files.move(cachedMessage.getFile().toPath(), cacheFile.toPath());
|
||||
return new CachedMessage(cacheFile);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue