diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2024-02-01 10:54:30 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-01 10:54:30 +0200 | 
| commit | a2caf2b5e132ad6d50d83348d8efe9cdea72ec6e (patch) | |
| tree | 4f04f68daf3cc5984e720f5e2da721452d60c153 /lib/mgmt_fe_client.h | |
| parent | bd3b17d27d0a334fdd815d8aca0ac074f521d02c (diff) | |
| parent | e9fc85f4211bf2557a6d6092e812392c07ddf311 (diff) | |
Merge pull request #15268 from LabNConsulting/chopps/quieter-code
lowercase and localize debug/err macros
Diffstat (limited to 'lib/mgmt_fe_client.h')
| -rw-r--r-- | lib/mgmt_fe_client.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/mgmt_fe_client.h b/lib/mgmt_fe_client.h index 50ebb80149..7af1270071 100644 --- a/lib/mgmt_fe_client.h +++ b/lib/mgmt_fe_client.h @@ -132,12 +132,12 @@ extern struct debug mgmt_dbg_fe_client;   * API prototypes   ***************************************************************/ -#define MGMTD_FE_CLIENT_DBG(fmt, ...)                                          \ +#define debug_fe_client(fmt, ...)                                              \  	DEBUGD(&mgmt_dbg_fe_client, "FE-CLIENT: %s: " fmt, __func__,           \  	       ##__VA_ARGS__) -#define MGMTD_FE_CLIENT_ERR(fmt, ...)                                          \ +#define log_err_fe_client(fmt, ...)                                            \  	zlog_err("FE-CLIENT: %s: ERROR: " fmt, __func__, ##__VA_ARGS__) -#define MGMTD_DBG_FE_CLIENT_CHECK()                                            \ +#define debug_check_fe_client()                                                \  	DEBUG_MODE_CHECK(&mgmt_dbg_fe_client, DEBUG_MODE_ALL)  /*  | 
