Update QsLog to 2.1 snapshot 46b643d5bcbc

This commit is contained in:
Felix Kauselmann
2020-07-24 19:05:01 +02:00
parent c13ec618d0
commit 1568a5f253
45 changed files with 2579 additions and 269 deletions

View File

@ -27,7 +27,6 @@
#define QSLOGDESTCONSOLE_H
#include "QsLogDest.h"
class QString;
class QsDebugOutput
@ -40,11 +39,14 @@ namespace QsLogging
{
// debugger sink
class DebugOutputDestination : public Destination
class QSLOG_SHARED_OBJECT DebugOutputDestination : public Destination
{
public:
virtual void write(const QString& message, Level level);
virtual bool isValid();
static const char* const Type;
void write(const LogMessage& message) override;
bool isValid() override;
QString type() const override;
};
}