1234567891011121314151617181920212223242526272829303132333435 |
- #pragma once
- #include <QLoggingCategory>
- #include <qtprotobufglobal.h>
- Q_PROTOBUF_EXPORT Q_DECLARE_LOGGING_CATEGORY(qtprotobuflog)
- #define qProtoDebug(...) qCDebug(qtprotobuflog, __VA_ARGS__)
- #define qProtoInfo(...) qCInfo(qtprotobuflog, __VA_ARGS__)
- #define qProtoWarning(...) qCWarning(qtprotobuflog, __VA_ARGS__)
- #define qProtoCritical(...) qCCritical(qtprotobuflog, __VA_ARGS__)
|