rockbox/rbutil/rbutilqt/test/stubs/Logger.h
Dominik Riebeling 70baf0f7be Fix compiling HttpGet unit test.
Provide a stub for Logger class to make the test compile.

Change-Id: I142eaf443c1f9026506100b82c9341e83b619ab6
2015-12-18 23:42:18 +01:00

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