Files
eden/src/common/logging/backend.h
T

26 lines
601 B
C++
Raw Normal View History

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