diff options
Diffstat (limited to 'src/vpp-api/vom/rpc_cmd.hpp')
-rw-r--r-- | src/vpp-api/vom/rpc_cmd.hpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/vpp-api/vom/rpc_cmd.hpp b/src/vpp-api/vom/rpc_cmd.hpp index bd78978a3cf..84b6717c53b 100644 --- a/src/vpp-api/vom/rpc_cmd.hpp +++ b/src/vpp-api/vom/rpc_cmd.hpp @@ -105,7 +105,11 @@ public: * Called by the HW Command Q when it is disabled to indicate the * command can be considered successful without issuing it to HW */ - virtual void succeeded() { m_hw_item.set(rc_t::OK); } + virtual void succeeded() + { + m_hw_item.set(rc_t::OK); + VOM_LOG(log_level_t::DEBUG) << to_string(); + } /** * call operator used as a callback by VAPI when the reply is available |