Added some comments

This commit is contained in:
2025-07-31 02:09:45 -04:00
parent 15220aa3b7
commit d36115c841
7 changed files with 73 additions and 4 deletions

View File

@@ -5,9 +5,17 @@
namespace ugly {
/**
* \brief Interface for a generic log-like object.
*/
class ILogFacility {
public:
~ILogFacility() = default;
/**
* \brief Put a message into the log, \c std::vformat -style.
* \param fmt Format string.
* \param args Format arguments.
*/
virtual void vlog(std::string_view fmt, std::format_args args) = 0;
};