Skip to content

Commit

Permalink
left fmt log
Browse files Browse the repository at this point in the history
  • Loading branch information
acelyc111 committed Oct 24, 2022
1 parent dce8bbe commit 2ae7706
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/fmt_logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
dsn_log( \
__FILENAME__, __FUNCTION__, __LINE__, level, fmt::format(__VA_ARGS__).c_str()); \
} while (false)
#define dinfo_f(...) dlog_f(LOG_LEVEL_INFO, __VA_ARGS__)
#define ddebug_f(...) dlog_f(LOG_LEVEL_DEBUG, __VA_ARGS__)
#define dinfo_f(...) dlog_f(LOG_LEVEL_DEBUG, __VA_ARGS__)
#define ddebug_f(...) dlog_f(LOG_LEVEL_INFO, __VA_ARGS__)
#define dwarn_f(...) dlog_f(LOG_LEVEL_WARNING, __VA_ARGS__)
#define derror_f(...) dlog_f(LOG_LEVEL_ERROR, __VA_ARGS__)
#define dfatal_f(...) dlog_f(LOG_LEVEL_FATAL, __VA_ARGS__)
Expand Down

0 comments on commit 2ae7706

Please sign in to comment.