Loading include/sled/log/log.h +1 −1 Original line number Diff line number Diff line Loading @@ -80,7 +80,7 @@ void Log(LogLevel level, const char *tag, const char *fmt, const char *file_name #define __LOG_EVERY_N(n, level, tag, fmt, ...) \ do { \ static int __sled_log_count##__LINE__ = 0; \ if (__sled_log_count##__LINE++ % n == 0) { SLOG(level, tag, fmt, ##__VA_ARGS__); } \ if (__sled_log_count##__LINE__++ % n == 0) { SLOG(level, tag, fmt, ##__VA_ARGS__); } \ } while (0) #define LOGV_EVERY_N(n, tag, fmt, ...) __LOG_EVERY_N(n, sled::LogLevel::kTrace, tag, fmt, ##__VA_ARGS__) Loading Loading
include/sled/log/log.h +1 −1 Original line number Diff line number Diff line Loading @@ -80,7 +80,7 @@ void Log(LogLevel level, const char *tag, const char *fmt, const char *file_name #define __LOG_EVERY_N(n, level, tag, fmt, ...) \ do { \ static int __sled_log_count##__LINE__ = 0; \ if (__sled_log_count##__LINE++ % n == 0) { SLOG(level, tag, fmt, ##__VA_ARGS__); } \ if (__sled_log_count##__LINE__++ % n == 0) { SLOG(level, tag, fmt, ##__VA_ARGS__); } \ } while (0) #define LOGV_EVERY_N(n, tag, fmt, ...) __LOG_EVERY_N(n, sled::LogLevel::kTrace, tag, fmt, ##__VA_ARGS__) Loading