feat: Add async action system operation log.

This commit is contained in:
sunwen
2024-09-23 10:07:01 +08:00
parent 86ab0c5c06
commit aecc6d6943

View File

@@ -1,5 +1,6 @@
#include "DmsAsyncAction.h" #include "DmsAsyncAction.h"
#include "dms_mq.h" #include "dms_mq.h"
#include "log/LogManager.h"
#include <QTimer> #include <QTimer>
@@ -45,6 +46,7 @@ bool DmsAsyncAction::execute()
{ {
return false; return false;
} }
LOG_SYS_OPERATION(QString("GUI -> DMS : %1-%2, Message:%3").arg(mServerId).arg(mActionId).arg(mSendData));
mTimer->start(); mTimer->start();
return true; return true;
} }