From 184ea4e369258d20a0021c96b5cb03fed5033ede Mon Sep 17 00:00:00 2001 From: Anuj Kalia Date: Mon, 22 Jun 2020 12:47:34 -0500 Subject: [PATCH] Prefix logger.h macros with erpc_ --- src/util/logger.h | 55 ++++++++++++++++++++++++----------------------- 1 file changed, 28 insertions(+), 27 deletions(-) diff --git a/src/util/logger.h b/src/util/logger.h index 9ebc3db1..3c3f9084 100644 --- a/src/util/logger.h +++ b/src/util/logger.h @@ -34,11 +34,11 @@ namespace erpc { #define ERPC_LOG_DEFAULT_STREAM stdout // Log messages with "reorder" or higher verbosity get written to -// trace_file_or_default_stream. This can be stdout for basic debugging, or +// erpc_trace_file_or_default_stream. This can be stdout for basic debugging, or // eRPC's trace file for more involved debugging. -#define trace_file_or_default_stream trace_file -//#define trace_file_or_default_stream ERPC_LOG_DEFAULT_STREAM +#define erpc_trace_file_or_default_stream trace_file +//#define erpc_trace_file_or_default_stream ERPC_LOG_DEFAULT_STREAM // If ERPC_LOG_LEVEL is not defined, default to the highest level so that // YouCompleteMe does not report compilation errors @@ -46,58 +46,59 @@ namespace erpc { #define ERPC_LOG_LEVEL ERPC_LOG_LEVEL_CC #endif -static void output_log_header(int level); - #if ERPC_LOG_LEVEL >= ERPC_LOG_LEVEL_ERROR -#define ERPC_ERROR(...) \ - output_log_header(ERPC_LOG_DEFAULT_STREAM, ERPC_LOG_LEVEL_ERROR); \ - fprintf(ERPC_LOG_DEFAULT_STREAM, __VA_ARGS__); \ +#define ERPC_ERROR(...) \ + erpc_output_log_header(ERPC_LOG_DEFAULT_STREAM, ERPC_LOG_LEVEL_ERROR); \ + fprintf(ERPC_LOG_DEFAULT_STREAM, __VA_ARGS__); \ fflush(ERPC_LOG_DEFAULT_STREAM) #else #define ERPC_ERROR(...) ((void)0) #endif #if ERPC_LOG_LEVEL >= ERPC_LOG_LEVEL_WARN -#define ERPC_WARN(...) \ - output_log_header(ERPC_LOG_DEFAULT_STREAM, ERPC_LOG_LEVEL_WARN); \ - fprintf(ERPC_LOG_DEFAULT_STREAM, __VA_ARGS__); \ +#define ERPC_WARN(...) \ + erpc_output_log_header(ERPC_LOG_DEFAULT_STREAM, ERPC_LOG_LEVEL_WARN); \ + fprintf(ERPC_LOG_DEFAULT_STREAM, __VA_ARGS__); \ fflush(ERPC_LOG_DEFAULT_STREAM) #else #define ERPC_WARN(...) ((void)0) #endif #if ERPC_LOG_LEVEL >= ERPC_LOG_LEVEL_INFO -#define ERPC_INFO(...) \ - output_log_header(ERPC_LOG_DEFAULT_STREAM, ERPC_LOG_LEVEL_INFO); \ - fprintf(ERPC_LOG_DEFAULT_STREAM, __VA_ARGS__); \ +#define ERPC_INFO(...) \ + erpc_output_log_header(ERPC_LOG_DEFAULT_STREAM, ERPC_LOG_LEVEL_INFO); \ + fprintf(ERPC_LOG_DEFAULT_STREAM, __VA_ARGS__); \ fflush(ERPC_LOG_DEFAULT_STREAM) #else #define ERPC_INFO(...) ((void)0) #endif #if ERPC_LOG_LEVEL >= ERPC_LOG_LEVEL_REORDER -#define ERPC_REORDER(...) \ - output_log_header(trace_file_or_default_stream, ERPC_LOG_LEVEL_REORDER); \ - fprintf(trace_file_or_default_stream, __VA_ARGS__); \ - fflush(trace_file_or_default_stream) +#define ERPC_REORDER(...) \ + erpc_output_log_header(erpc_trace_file_or_default_stream, \ + ERPC_LOG_LEVEL_REORDER); \ + fprintf(erpc_trace_file_or_default_stream, __VA_ARGS__); \ + fflush(erpc_trace_file_or_default_stream) #else #define ERPC_REORDER(...) ((void)0) #endif #if ERPC_LOG_LEVEL >= ERPC_LOG_LEVEL_TRACE -#define ERPC_TRACE(...) \ - output_log_header(trace_file_or_default_stream, ERPC_LOG_LEVEL_TRACE); \ - fprintf(trace_file_or_default_stream, __VA_ARGS__); \ - fflush(trace_file_or_default_stream) +#define ERPC_TRACE(...) \ + erpc_output_log_header(erpc_trace_file_or_default_stream, \ + ERPC_LOG_LEVEL_TRACE); \ + fprintf(erpc_trace_file_or_default_stream, __VA_ARGS__); \ + fflush(erpc_trace_file_or_default_stream) #else #define ERPC_TRACE(...) ((void)0) #endif #if ERPC_LOG_LEVEL >= ERPC_LOG_LEVEL_CC -#define ERPC_CC(...) \ - output_log_header(trace_file_or_default_stream, ERPC_LOG_LEVEL_CC); \ - fprintf(trace_file_or_default_stream, __VA_ARGS__); \ - fflush(trace_file_or_default_stream) +#define ERPC_CC(...) \ + erpc_output_log_header(erpc_trace_file_or_default_stream, \ + ERPC_LOG_LEVEL_CC); \ + fprintf(erpc_trace_file_or_default_stream, __VA_ARGS__); \ + fflush(erpc_trace_file_or_default_stream) #else #define ERPC_CC(...) ((void)0) #endif @@ -115,7 +116,7 @@ static std::string get_formatted_time() { } // Output log message header -static void output_log_header(FILE *stream, int level) { +static void erpc_output_log_header(FILE *stream, int level) { std::string formatted_time = get_formatted_time(); const char *type;