Fix pal log header typo

This commit is contained in:
Zheng, Qi 2021-12-16 09:31:02 +08:00 committed by Zongmin.Gu
parent 9d490ada58
commit 61ce53c67a

@ -8,7 +8,7 @@
#define PAL_INFO(fmt, ...) \ #define PAL_INFO(fmt, ...) \
fprintf(stderr, "[INFO] occlum-pal: " fmt " (line %d, file %s)\n", ##__VA_ARGS__, __LINE__, __FILE__) fprintf(stderr, "[INFO] occlum-pal: " fmt " (line %d, file %s)\n", ##__VA_ARGS__, __LINE__, __FILE__)
#define PAL_WARN(fmt, ...) \ #define PAL_WARN(fmt, ...) \
fprintf(stderr, "[WARM] occlum-pal: " fmt " (line %d, file %s)\n", ##__VA_ARGS__, __LINE__, __FILE__) fprintf(stderr, "[WARN] occlum-pal: " fmt " (line %d, file %s)\n", ##__VA_ARGS__, __LINE__, __FILE__)
#define PAL_ERROR(fmt, ...) \ #define PAL_ERROR(fmt, ...) \
fprintf(stderr, "[ERROR] occlum-pal: " fmt " (line %d, file %s)\n", ##__VA_ARGS__, __LINE__, __FILE__) fprintf(stderr, "[ERROR] occlum-pal: " fmt " (line %d, file %s)\n", ##__VA_ARGS__, __LINE__, __FILE__)