/**************************************************************************/ /* logger.cpp */ /**************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ /* https://godotengine.org */ /**************************************************************************/ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ /* Permission is hereby granted, free of charge, to any person obtaining */ /* a copy of this software and associated documentation files (the */ /* "Software"), to deal in the Software without restriction, including */ /* without limitation the rights to use, copy, modify, merge, publish, */ /* distribute, sublicense, and/or sell copies of the Software, and to */ /* permit persons to whom the Software is furnished to do so, subject to */ /* the following conditions: */ /* */ /* The above copyright notice and this permission notice shall be */ /* included in all copies or substantial portions of the Software. */ /* */ /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */ /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */ /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */ /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */ /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /**************************************************************************/ #include "logger.h" #include "core/config/project_settings.h" #include "core/core_globals.h" #include "core/io/dir_access.h" #include "core/os/os.h" #include "core/os/time.h" #include "core/string/print_string.h" #include "modules/modules_enabled.gen.h" // For regex. #if defined(MINGW_ENABLED) || defined(_MSC_VER) #define sprintf … #endif bool Logger::should_log(bool p_err) { … } bool Logger::_flush_stdout_on_print = …; void Logger::set_flush_stdout_on_print(bool value) { … } void Logger::log_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, bool p_editor_notify, ErrorType p_type) { … } void Logger::logf(const char *p_format, ...) { … } void Logger::logf_error(const char *p_format, ...) { … } void RotatedFileLogger::clear_old_backups() { … } void RotatedFileLogger::rotate_file() { … } RotatedFileLogger::RotatedFileLogger(const String &p_base_path, int p_max_files) : … { … } void RotatedFileLogger::logv(const char *p_format, va_list p_list, bool p_err) { … } void StdLogger::logv(const char *p_format, va_list p_list, bool p_err) { … } CompositeLogger::CompositeLogger(const Vector<Logger *> &p_loggers) : … { … } void CompositeLogger::logv(const char *p_format, va_list p_list, bool p_err) { … } void CompositeLogger::log_error(const char *p_function, const char *p_file, int p_line, const char *p_code, const char *p_rationale, bool p_editor_notify, ErrorType p_type) { … } void CompositeLogger::add_logger(Logger *p_logger) { … } CompositeLogger::~CompositeLogger() { … }