This commit is contained in:
Nav
2021-09-04 18:04:28 +01:00
parent 85ef2c57e1
commit dd25fc9bf2
3 changed files with 1 additions and 6 deletions

View File

@@ -12,6 +12,7 @@ void InsightWorkerTask::execute(TargetControllerConsole& targetControllerConsole
} catch (std::exception& exception) {
this->state = InsightWorkerTaskState::FAILED;
Logger::error("InsightWorker task failed - " + std::string(exception.what()));
emit this->failed(QString::fromStdString(exception.what()));
}
}

View File

@@ -1,8 +1,5 @@
#pragma once
#include <QObject>
#include <QString>
#include "InsightWorkerTask.hpp"
#include "src/Targets/TargetRegister.hpp"

View File

@@ -1,8 +1,5 @@
#pragma once
#include <QObject>
#include <QString>
#include "InsightWorkerTask.hpp"
#include "src/Targets/TargetVariant.hpp"
#include "src/Targets/TargetPinDescriptor.hpp"