Migration of QtMvvm from github
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
413 B

#ifndef LOGGING_P_H
#define LOGGING_P_H
#include <QtCore/QLoggingCategory>
#include "qtmvvmcore_global.h"
namespace QtMvvm {
Q_DECLARE_LOGGING_CATEGORY(mvvmcore)
}
#define logDebug(...) qCDebug(mvvmcore, __VA_ARGS__)
#define logInfo(...) qCInfo(mvvmcore, __VA_ARGS__)
#define logWarning(...) qCWarning(mvvmcore, __VA_ARGS__)
#define logCritical(...) qCCritical(mvvmcore, __VA_ARGS__)
#endif // LOGGING_P_H