suyu/src/common/logging/backend.h

27 lines
594 B
C++
Raw Normal View History

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