2014-10-28 03:36:00 -04:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 00:38:14 -05:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-10-28 03:36:00 -04:00
|
|
|
// Refer to the license.txt file included.
|
2021-06-13 10:31:47 -04:00
|
|
|
|
2014-10-28 03:36:00 -04:00
|
|
|
#pragma once
|
|
|
|
|
2021-05-25 19:32:56 -04:00
|
|
|
#include <filesystem>
|
2018-07-02 13:10:41 -04:00
|
|
|
#include "common/logging/filter.h"
|
2021-06-13 07:52:02 -04:00
|
|
|
|
2021-04-14 20:19:52 -04:00
|
|
|
namespace Common::Log {
|
2014-10-28 03:36:00 -04:00
|
|
|
|
2015-05-12 01:19:44 -04:00
|
|
|
class Filter;
|
|
|
|
|
2021-08-13 14:39:45 -04:00
|
|
|
/// Initializes the logging system. This should be the first thing called in main.
|
|
|
|
void Initialize();
|
2018-07-02 13:10:41 -04:00
|
|
|
|
2021-08-13 14:39:45 -04:00
|
|
|
void DisableLoggingInTests();
|
2018-07-02 13:10:41 -04:00
|
|
|
|
|
|
|
/**
|
2021-08-13 14:39:45 -04:00
|
|
|
* The global filter will prevent any messages from even being processed if they are filtered.
|
2018-07-02 13:10:41 -04:00
|
|
|
*/
|
|
|
|
void SetGlobalFilter(const Filter& filter);
|
2021-08-13 14:39:45 -04:00
|
|
|
|
|
|
|
void SetColorConsoleBackendEnabled(bool enabled);
|
|
|
|
} // namespace Common::Log
|