Logger: suppress some clang-tidy warning

This commit is contained in:
Martin Pulec
2020-06-25 14:19:38 +02:00
parent 91ddb1c58e
commit 22da4e122b

View File

@@ -119,8 +119,7 @@ private:
};
#define LOG(level) \
if (level > log_level) ; \
else Logger(level).Get()
if (level <= log_level) Logger(level).Get()
#endif