From aecc6d6943a4f9e1331800b649fca60b6286dc20 Mon Sep 17 00:00:00 2001 From: sunwen Date: Mon, 23 Sep 2024 10:07:01 +0800 Subject: [PATCH] feat: Add async action system operation log. --- src/device/DmsAsyncAction.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/device/DmsAsyncAction.cpp b/src/device/DmsAsyncAction.cpp index 6ad761c..f0e28d2 100644 --- a/src/device/DmsAsyncAction.cpp +++ b/src/device/DmsAsyncAction.cpp @@ -1,5 +1,6 @@ #include "DmsAsyncAction.h" #include "dms_mq.h" +#include "log/LogManager.h" #include @@ -45,6 +46,7 @@ bool DmsAsyncAction::execute() { return false; } + LOG_SYS_OPERATION(QString("GUI -> DMS : %1-%2, Message:%3").arg(mServerId).arg(mActionId).arg(mSendData)); mTimer->start(); return true; }