diff options
author | Christian Hopps <chopps@labn.net> | 2023-06-12 06:25:07 +0200 |
---|---|---|
committer | Christian Hopps <chopps@labn.net> | 2023-06-12 08:32:29 +0200 |
commit | 79d40972fddc2651b499bf2f5780aea97c9f5d07 (patch) | |
tree | c4dc906f59e74f4020af898f1a870fb300564755 /mgmtd/mgmt_txn.c | |
parent | mgmtd: remove unused code (diff) | |
download | frr-79d40972fddc2651b499bf2f5780aea97c9f5d07.tar.xz frr-79d40972fddc2651b499bf2f5780aea97c9f5d07.zip |
lib: mgmtd: fix/stdize debug message macros
Signed-off-by: Christian Hopps <chopps@labn.net>
Diffstat (limited to 'mgmtd/mgmt_txn.c')
-rw-r--r-- | mgmtd/mgmt_txn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mgmtd/mgmt_txn.c b/mgmtd/mgmt_txn.c index 6b85bd68f..18aeab711 100644 --- a/mgmtd/mgmt_txn.c +++ b/mgmtd/mgmt_txn.c @@ -15,7 +15,7 @@ #include "mgmtd/mgmt_txn.h" #define MGMTD_TXN_DBG(fmt, ...) \ - DEBUGD(&mgmt_debug_txn, "%s:" fmt, __func__, ##__VA_ARGS__) + DEBUGD(&mgmt_debug_txn, "TXN: %s: " fmt, __func__, ##__VA_ARGS__) #define MGMTD_TXN_ERR(fmt, ...) \ zlog_err("%s: ERROR: " fmt, __func__, ##__VA_ARGS__) |