From b0a9b6eb16ebd11853c553b7424c6460afc893f0 Mon Sep 17 00:00:00 2001 From: Guodong Xu Date: Fri, 15 May 2020 05:30:19 +0000 Subject: [PATCH] disable normal LOG() message Signed-off-by: Guodong Xu --- bl_test.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bl_test.h b/bl_test.h index ce63f99..6176f37 100644 --- a/bl_test.h +++ b/bl_test.h @@ -78,7 +78,8 @@ extern "C" { #define C(I,J) c[(I)-1 + ((J)-1)* ( *ldc)] #define STRINGIZE(x) #x -#define LOG(format, ...) fprintf (stderr, format , ##__VA_ARGS__) +// #define LOG(format, ...) fprintf (stderr, format , ##__VA_ARGS__) +#define LOG(format, ...) #define ERROR_LOG(format, ...) fprintf (stderr,"Error: " format "\n", ##__VA_ARGS__) #define PASS_LOG(format, ...) fprintf (stderr,"Passed: " format "\n", ##__VA_ARGS__)