From 8de7a5854a7368dfdd7624a356eaf6cc5356e39b Mon Sep 17 00:00:00 2001 From: MassimilianoPinto Date: Tue, 9 Dec 2014 11:17:30 +0100 Subject: [PATCH] Log files names printed only with DEBUG mode Log files names printed only with DEBUG mode --- log_manager/log_manager.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/log_manager/log_manager.cc b/log_manager/log_manager.cc index 8fcc0deb6..1d5512756 100644 --- a/log_manager/log_manager.cc +++ b/log_manager/log_manager.cc @@ -2585,6 +2585,7 @@ static bool logfile_init( goto return_with_succp; } +#if defined(SS_DEBUG) if (store_shmem) { fprintf(stderr, "%s\t: %s->%s\n", @@ -2598,6 +2599,7 @@ static bool logfile_init( STRLOGNAME(logfile_id), logfile->lf_full_file_name); } +#endif succp = true; logfile->lf_state = RUN; CHK_LOGFILE(logfile);