Skip to content

Commit

Permalink
disable normal LOG() message
Browse files Browse the repository at this point in the history
Signed-off-by: Guodong Xu <guodong.xu@linaro.com>
  • Loading branch information
Guodong Xu committed May 15, 2020
1 parent 23f8e88 commit b0a9b6e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bl_test.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__)

Expand Down

0 comments on commit b0a9b6e

Please sign in to comment.