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