From c71610d7d45628c08e3e2c0a036abc2014b468fb Mon Sep 17 00:00:00 2001 From: Johan Wikman Date: Sun, 29 Nov 2015 21:25:46 +0200 Subject: [PATCH] Rename error.log to maxscale.log Since there is but one log file where error, warning, notice, info and debug messages are written, calling it "error.log" is misleading. Consequently the log file is renamed to "maxscale.log". --- log_manager/log_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log_manager/log_manager.cc b/log_manager/log_manager.cc index 008258ff6..5dad7bff4 100644 --- a/log_manager/log_manager.cc +++ b/log_manager/log_manager.cc @@ -43,7 +43,7 @@ # define _GNU_SOURCE #endif -static const char LOGFILE_NAME_PREFIX[] = "error"; +static const char LOGFILE_NAME_PREFIX[] = "maxscale"; static const char LOGFILE_NAME_SUFFIX[] = ".log"; extern char *program_invocation_name;