/* ============================================================================== This file is part of the juce_core module of the JUCE library. Copyright (c) 2013 - Raw Material Software Ltd. Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ------------------------------------------------------------------------------ NOTE! This permissive ISC license applies ONLY to files within the juce_core module! All other JUCE modules are covered by a dual GPL/commercial license, so if you are using any other modules, be sure to check that you also comply with their license. For more details, visit www.juce.com ============================================================================== */ #ifndef JUCE_LOGGER_H_INCLUDED #define JUCE_LOGGER_H_INCLUDED //============================================================================== /** Acts as an application-wide logging class. A subclass of Logger can be created and passed into the Logger::setCurrentLogger method and this will then be used by all calls to writeToLog. The logger class also contains methods for writing messages to the debugger's output stream. @see FileLogger */ class JUCE_API Logger { public: //============================================================================== /** Destructor. */ virtual ~Logger(); //============================================================================== /** Sets the current logging class to use. 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. */ static void JUCE_CALLTYPE setCurrentLogger (Logger* newLogger) noexcept; /** Returns the current logger, or nullptr if none has been set. */ static Logger* getCurrentLogger() noexcept; /** Writes a string to the current logger. This will pass the string to the logger's logMessage() method if a logger has been set. @see logMessage */ static void JUCE_CALLTYPE writeToLog (const String& message); //============================================================================== /** Writes a message to the standard error stream. This can be called directly, or by using the DBG() macro in juce_PlatformDefs.h (which will avoid calling the method in non-debug builds). */ static void JUCE_CALLTYPE outputDebugString (const String& text); protected: //============================================================================== Logger(); /** This is overloaded by subclasses to implement custom logging behaviour. @see setCurrentLogger */ virtual void logMessage (const String& message) = 0; private: static Logger* currentLogger; }; #endif // JUCE_LOGGER_H_INCLUDED