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