| // Copyright 2014 Citra Emulator Project | |
| // Licensed under GPLv2 or any later version | |
| // Refer to the license.txt file included. | |
| namespace Common::Log { | |
| class Filter; | |
| /// Initializes the logging system. This should be the first thing called in main. | |
| void Initialize(std::string_view log_file = ""); | |
| void Start(); | |
| /// Explictily stops the logger thread and flushes the buffers | |
| void Stop(); | |
| void DisableLoggingInTests(); | |
| /** | |
| * The global filter will prevent any messages from even being processed if they are filtered. | |
| */ | |
| void SetGlobalFilter(const Filter& filter); | |
| /** | |
| * Only allow messages that match the specified regex. The regex is matched against the final log | |
| * text. | |
| */ | |
| bool SetRegexFilter(const std::string& regex); | |
| void SetColorConsoleBackendEnabled(bool enabled); | |
| } // namespace Common::Log | |