11 lines
416 B
C
11 lines
416 B
C
![]() |
#ifndef __RMUTIL_LOGGING_H__
|
||
|
#define __RMUTIL_LOGGING_H__
|
||
|
|
||
|
/* Convenience macros for redis logging */
|
||
|
|
||
|
#define RM_LOG_DEBUG(ctx, ...) RedisModule_Log(ctx, "debug", __VA_ARGS__)
|
||
|
#define RM_LOG_VERBOSE(ctx, ...) RedisModule_Log(ctx, "verbose", __VA_ARGS__)
|
||
|
#define RM_LOG_NOTICE(ctx, ...) RedisModule_Log(ctx, "notice", __VA_ARGS__)
|
||
|
#define RM_LOG_WARNING(ctx, ...) RedisModule_Log(ctx, "warning", __VA_ARGS__)
|
||
|
|
||
|
#endif
|