mirror of
https://github.com/citra-emu/citra.git
synced 2025-04-11 20:10:07 +00:00

Adds an array to store loggers to speed up look up. Adds filter support to the new backend Various other cleanup changes
11 lines
231 B
C++
11 lines
231 B
C++
// Copyright 2017 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
namespace Log {
|
|
class Filter;
|
|
|
|
void SpdLogSetFilter(Filter* filter);
|
|
} // namespace Log
|