Files
ugly/source/log/include/ILogFacility.hpp
Pablo Rodriguez aebd69a027 Minor refactoring
2025-07-29 17:17:28 -04:00

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;
};
}