123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #include "QsLogDestFunctor.h"
- #include <cstddef>
- #include <QtGlobal>
- QsLogging::FunctorDestination::FunctorDestination(LogFunction f)
- : QObject(NULL)
- , mLogFunction(f)
- {
- }
- QsLogging::FunctorDestination::FunctorDestination(QObject *receiver, const char *member)
- : QObject(NULL)
- , mLogFunction(NULL)
- {
- connect(this, SIGNAL(logMessageReady(QString,int)), receiver, member, Qt::QueuedConnection);
- }
- void QsLogging::FunctorDestination::write(const QString &message, QsLogging::Level level)
- {
- if (mLogFunction)
- mLogFunction(message, level);
- if (level > QsLogging::TraceLevel)
- emit logMessageReady(message, static_cast<int>(level));
- }
- bool QsLogging::FunctorDestination::isValid()
- {
- return true;
- }
|