summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/logger.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/logger.c b/main/logger.c
index ed4d0729b..d31aabd41 100644
--- a/main/logger.c
+++ b/main/logger.c
@@ -705,6 +705,8 @@ static void logger_print_normal(struct logmsg *logmsg)
fprintf(stderr, "Logger Warning: Unable to write to log file '%s': %s (disabled)\n", chan->filename, strerror(errno));
manager_event(EVENT_FLAG_SYSTEM, "LogChannel", "Channel: %s\r\nEnabled: No\r\nReason: %d - %s\r\n", chan->filename, errno, strerror(errno));
chan->disabled = 1;
+ } else if (res > 0) {
+ fflush(chan->fileptr);
}
}
}