# HG changeset patch # User Sebastien Jodogne # Date 1714737508 -7200 # Node ID 5df6d2a8d9f230f5a605fe2b7f7eb273e24e31e7 # Parent 1b31ab38ea94a0cea00c382133e1e7d37f120227 fix compatibility of Logging.h with WebAssembly diff -r 1b31ab38ea94 -r 5df6d2a8d9f2 OrthancFramework/Sources/Logging.h --- a/OrthancFramework/Sources/Logging.h Fri May 03 10:26:55 2024 +0200 +++ b/OrthancFramework/Sources/Logging.h Fri May 03 13:58:28 2024 +0200 @@ -224,6 +224,7 @@ public: InternalLogger(LogLevel level, LogCategory category, + const char* pluginName /* ignored */, const char* file /* ignored */, int line /* ignored */) : level_(level), @@ -231,15 +232,6 @@ { } - // For backward binary compatibility with Orthanc Framework <= 1.8.0 - InternalLogger(LogLevel level, - const char* file /* ignored */, - int line /* ignored */) : - level_(level), - category_(LogCategory_GENERIC) - { - } - ~InternalLogger(); template