Files
ugly/source/log/include/ILogFacility.hpp
2025-07-28 08:29:53 -04:00

14 lines
194 B
C++

#pragma once
#include <format>
#include <string_view>
namespace ugly {
class ILogFacility {
public:
virtual void vlog(std::string_view fmt, std::format_args args) = 0;
};
}