mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-25 20:25:38 -06:00
* [LOG] group same lines with counter * Log in single line counter * Protect log singleton from ps4 threads * Log always compact
29 lines
678 B
C++
29 lines
678 B
C++
// SPDX-FileCopyrightText: Copyright 2014 Citra Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <chrono>
|
|
|
|
#include "common/logging/types.h"
|
|
|
|
namespace Common::Log {
|
|
|
|
/**
|
|
* A log entry. Log entries are store in a structured format to permit more varied output
|
|
* formatting on different frontends, as well as facilitating filtering and aggregation.
|
|
*/
|
|
struct Entry {
|
|
std::chrono::microseconds timestamp;
|
|
Class log_class{};
|
|
Level log_level{};
|
|
const char* filename = nullptr;
|
|
u32 line_num = 0;
|
|
std::string function;
|
|
std::string message;
|
|
std::string thread;
|
|
u32 counter = 0;
|
|
};
|
|
|
|
} // namespace Common::Log
|