70baf0f7be
Provide a stub for Logger class to make the test compile. Change-Id: I142eaf443c1f9026506100b82c9341e83b619ab6
11 lines
145 B
C
11 lines
145 B
C
#ifndef LOGGER_H
|
|
#define LOGGER_H
|
|
|
|
#include <QtDebug>
|
|
|
|
#define LOG_INFO qDebug
|
|
#define LOG_WARNING qWarning
|
|
#define LOG_ERROR qCritical
|
|
|
|
#endif
|
|
|