4d2ce949b3
Change tracing from qDebug() to use cutelogger, which is available under the LGPL2.1. This allows to automatically add filename and line number to the log, and also provides multiple log levels. Change-Id: I5dbdaf902ba54ea99f07ae10a07467c52fdac910
12 lines
258 B
C
12 lines
258 B
C
#ifndef CUTELOGGER_GLOBAL_H
|
|
#define CUTELOGGER_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(CUTELOGGER_LIBRARY)
|
|
# define CUTELOGGERSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define CUTELOGGERSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // CUTELOGGER_GLOBAL_H
|