diff options
Diffstat (limited to 'src/journal-remote/journal-remote-write.c')
-rw-r--r-- | src/journal-remote/journal-remote-write.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/journal-remote/journal-remote-write.c b/src/journal-remote/journal-remote-write.c index 4d142bdc97..449636cd8c 100644 --- a/src/journal-remote/journal-remote-write.c +++ b/src/journal-remote/journal-remote-write.c @@ -81,8 +81,10 @@ int writer_init(Writer *s) { } int writer_close(Writer *s) { - if (s->journal) + if (s->journal) { journal_file_close(s->journal); + log_debug("Journal has been closed."); + } if (s->mmap) mmap_cache_unref(s->mmap); return 0; |