Fix logger and led colors (#906)

This commit is contained in:
Murat Seker
2020-07-27 20:00:36 +02:00
committed by GitHub
parent 773b47bf53
commit d4b4158cb7
9 changed files with 69 additions and 41 deletions

View File

@@ -79,7 +79,7 @@ protected:
~Logger();
private:
void write(const Logger::T_LOG_MESSAGE & message) const;
void write(const Logger::T_LOG_MESSAGE & message);
static QMutex MapLock;
static QMap<QString,Logger*> LoggerMap;
@@ -106,7 +106,7 @@ public slots:
void handleNewLogMessage(const Logger::T_LOG_MESSAGE&);
signals:
void newLogMessage(Logger::T_LOG_MESSAGE);
void newLogMessage(const Logger::T_LOG_MESSAGE&);
protected:
LoggerManager();