From 1f7f132b924ca0e33d278293deece88781ba6af0 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Tue, 8 Sep 2009 14:48:54 -0400 Subject: [PATCH] master: Write "last died with error" only to stderr, not to log. --HG-- branch : HEAD --- src/master/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/master/main.c b/src/master/main.c index dbe23e2535..7a9d505fb4 100644 --- a/src/master/main.c +++ b/src/master/main.c @@ -187,8 +187,8 @@ static void fatal_log_check(const struct master_settings *set) i_error("read(%s) failed: %m", path); else { buf[ret] = '\0'; - i_warning("Last died with error (see error log for more " - "information): %s", buf); + fprintf(stderr, "Last died with error (see error log for more " + "information): %s", buf); } close(fd); -- 2.47.3