From f918827dcffcad8740d4e791344f1b6379f19d90 Mon Sep 17 00:00:00 2001 From: jules Date: Wed, 4 Jan 2017 11:15:57 +0000 Subject: [PATCH] Clarified some comments in the Logger class --- modules/juce_core/logging/juce_Logger.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/juce_core/logging/juce_Logger.h b/modules/juce_core/logging/juce_Logger.h index f349e82754..f3b845a6d2 100644 --- a/modules/juce_core/logging/juce_Logger.h +++ b/modules/juce_core/logging/juce_Logger.h @@ -56,12 +56,12 @@ public: Note that the object passed in will not be owned or deleted by the logger, so the caller must make sure that it is not deleted while still being used. - A null pointer can be passed-in to disable any logging. + A null pointer can be passed-in to reset the system to the default logger. */ static void JUCE_CALLTYPE setCurrentLogger (Logger* newLogger) noexcept; - /** Returns the current logger, or nullptr if none has been set. */ - static Logger* getCurrentLogger() noexcept; + /** Returns the current logger, or nullptr if no custom logger has been set. */ + static Logger* JUCE_CALLTYPE getCurrentLogger() noexcept; /** Writes a string to the current logger.