15 lines
226 B
C++
15 lines
226 B
C++
#pragma once
|
|
|
|
#include <format>
|
|
#include <string_view>
|
|
|
|
namespace ugly {
|
|
|
|
class ILogFacility {
|
|
public:
|
|
~ILogFacility() = default;
|
|
virtual void vlog(std::string_view fmt, std::format_args args) = 0;
|
|
};
|
|
|
|
}
|