summaryrefslogtreecommitdiffstats
path: root/MMCError.h
diff options
context:
space:
mode:
Diffstat (limited to 'MMCError.h')
-rw-r--r--MMCError.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/MMCError.h b/MMCError.h
index 1f72b7a4..e81054a6 100644
--- a/MMCError.h
+++ b/MMCError.h
@@ -1,7 +1,7 @@
#pragma once
#include <exception>
#include <QString>
-#include <logger/QsLog.h>
+#include <QDebug>
class MMCError : public std::exception
{
@@ -9,7 +9,7 @@ public:
MMCError(QString cause)
{
exceptionCause = cause;
- QLOG_ERROR() << "Exception: " + cause;
+ qCritical() << "Exception: " + cause;
};
virtual ~MMCError() noexcept {}
virtual const char *what() const noexcept