blob: 16f1e584482a635da8e9f91e26941b207585011f (
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);
void sink_it_(const spdlog::details::log_msg& msg) override;
void flush_() override;
};
|