summaryrefslogtreecommitdiff
path: root/src/logger.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/logger.h')
-rw-r--r--src/logger.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/logger.h b/src/logger.h
index 51966b5e5..98cf2186a 100644
--- a/src/logger.h
+++ b/src/logger.h
@@ -53,6 +53,9 @@
#define UNIMPLIMENTEDPACKET \
logger->unimplimented(msg.getId())
+#define UNIMPLIMENTEDPACKETFIELD(field) \
+ logger->unimplimented(msg.getId(), field)
+
/**
* The Log Class : Useful to write debug or info messages
*/
@@ -174,6 +177,9 @@ class Logger final
void unimplimented(const int id);
+ void unimplimented(const int id,
+ const int id2);
+
private:
std::ofstream mLogFile;
std::vector<std::string> mDelayedLog;