diff Core/Logging.h @ 4005:7f9909062d9c

removed EnableEmscriptenLogging()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sat, 06 Jun 2020 11:18:12 +0200
parents 9b5ace33a00d
children f0ee3f1db775
line wrap: on
line diff
--- a/Core/Logging.h	Sat Jun 06 11:14:10 2020 +0200
+++ b/Core/Logging.h	Sat Jun 06 11:18:12 2020 +0200
@@ -224,19 +224,6 @@
     ORTHANC_PUBLIC void SetErrorWarnInfoLoggingStreams(std::ostream& errorStream,
                                                        std::ostream& warningStream, 
                                                        std::ostream& infoStream);
-
-#ifdef __EMSCRIPTEN__
-    /**
-       This function will change the logging streams so that the logging functions 
-       provided by emscripten html5.h API functions are used : it will change the 
-       error_, warning_ and info_  stream objects so that their operator<< writes 
-       into the browser console using emscripten_console_error(), 
-       emscripten_console_warn() and emscripten_console_log(). This will allow for
-       logging levels to be correctly handled by the browser when the code executes
-       in Web Assembly
-    */
-    ORTHANC_PUBLIC void EnableEmscriptenLogging();
-#endif
   }
 }