diff options
-rw-r--r-- | grpc-proxy/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grpc-proxy/log.h b/grpc-proxy/log.h index 9bbba41..459d5b5 100644 --- a/grpc-proxy/log.h +++ b/grpc-proxy/log.h @@ -5,7 +5,7 @@ #define DEBUG #if !defined(LOG) && defined(DEBUG) -#define LOG(fmt, ...) do { fprintf(stderr, "%s() " fmt, __func__, ##__VA_ARGS__); } while (0) +#define LOG(fmt, ...) do { fprintf(stderr, "gRPC:proxy:%s() " fmt, __func__, ##__VA_ARGS__); } while (0) #else #define LOG(fmt, ...) do {} while (0) #endif |