diff --git a/dsoftbus/depend/hilog/include/hilog/log.h b/dsoftbus/depend/hilog/include/hilog/log.h index 47118811f63388628a698cb17290c50e7aa29e17..76b005bc3fd547b2576f300fd4044ef4f6741249 100644 --- a/dsoftbus/depend/hilog/include/hilog/log.h +++ b/dsoftbus/depend/hilog/include/hilog/log.h @@ -3,9 +3,9 @@ #include -#define HILOG_DEBUG(type, fmt, ...) printf(fmt, ##__VA_ARGS__) -#define HILOG_INFO(type, fmt, ...) printf(fmt, ##__VA_ARGS__) -#define HILOG_WARN(type, fmt, ...) printf(fmt, ##__VA_ARGS__) -#define HILOG_ERROR(type, fmt, ...) printf(fmt, ##__VA_ARGS__) +#define HILOG_DEBUG(type, fmt, ...) printf(fmt"\n", ##__VA_ARGS__) +#define HILOG_INFO(type, fmt, ...) printf(fmt"\n", ##__VA_ARGS__) +#define HILOG_WARN(type, fmt, ...) printf(fmt"\n", ##__VA_ARGS__) +#define HILOG_ERROR(type, fmt, ...) printf(fmt"\n", ##__VA_ARGS__) #endif