mirror of
https://github.com/citra-emu/citra.git
synced 2025-04-09 01:30:08 +00:00
14 lines
309 B
C++
14 lines
309 B
C++
#include <spdlog/spdlog.h>
|
|
|
|
namespace Log {
|
|
|
|
class Formatter : public spdlog::formatter {
|
|
|
|
public:
|
|
explicit Formatter() = default;
|
|
Formatter(const Formatter&) = delete;
|
|
Formatter& operator=(const Formatter&) = delete;
|
|
void format(spdlog::details::log_msg& msg) override;
|
|
};
|
|
|
|
} // namespace Log
|