blob: 5678982e6bac5f106fe73f74843aba22867ccd4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
#include "logging/logging.h"
#include "core/convar/convar.h"
class DedicatedServerLogToClientSink : public CustomSink
{
protected:
void custom_sink_it_(const custom_log_msg& msg) override;
void sink_it_(const spdlog::details::log_msg& msg) override;
void flush_() override;
};
|