Improve debugging for new IRCv3 functionality
[quassel.git] / src / core / ircparser.h
index 1485337..19b7e82 100644 (file)
@@ -33,7 +33,7 @@ class IrcParser : public QObject
     Q_OBJECT
 
 public:
-    IrcParser(CoreSession* session);
+    explicit IrcParser(CoreSession* session);
 
     inline CoreSession* coreSession() const { return _coreSession; }
     inline EventManager* eventManager() const { return coreSession()->eventManager(); }
@@ -54,4 +54,6 @@ private:
 
     bool _debugLogRawIrc;      ///< If true, include raw IRC socket messages in the debug log
     qint32 _debugLogRawNetId;  ///< Network ID for logging raw IRC socket messages, or -1 for all
+    bool _debugLogParsedIrc;      ///< If true, include parsed IRC socket messages in the debug log
+    qint32 _debugLogParsedNetId;  ///< Network ID for logging parsed IRC socket messages, or -1 for all
 };