From 5e76f09f9bcecbc9349dc3ee7faf43bcc7c1376c Mon Sep 17 00:00:00 2001 From: David Teigland Date: Oct 05 2012 15:13:52 +0000 Subject: sanlock: print command output to stdout instead of stderr Signed-off-by: David Teigland --- diff --git a/src/log.h b/src/log.h index db6d275..10b8c36 100644 --- a/src/log.h +++ b/src/log.h @@ -50,7 +50,7 @@ void copy_log_dump(char *buf, int *len); #define log_tool(fmt, args...) \ do { \ - fprintf(stderr, fmt "\n", ##args); \ + printf(fmt "\n", ##args); \ } while (0) #endif