RestLink 2.2.0
Powerfull Rest Client for Qt
Loading...
Searching...
No Matches
debug.h
1#ifndef RESTLINK_DEBUG_H
2#define RESTLINK_DEBUG_H
3
4#include <RestLink/global.h>
5
6#include <QtCore/qloggingcategory.h>
7
8#define restlinkDebug() qCDebug(restlink).noquote().nospace()
9#define restlinkInfo() qCInfo(restlink).noquote().nospace()
10#define restlinkWarning() qCWarning(restlink).noquote().nospace()
11#define restlinkCritical() qCCritical(restlink).noquote().nospace()
12
13RESTLINK_EXPORT Q_DECLARE_LOGGING_CATEGORY(restlink)
14
15#endif // RESTLINK_DEBUG_H