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

@@ -6,6 +6,9 @@
namespace ugly {
/**
* \brief Provides \c std::format -style variadic template functions for \ref ILogFacility.
*/
class LogAlias {
public:
ILogFacility *mpLog;
@@ -19,6 +22,11 @@ public:
}
};
/**
* \brief Globally-shared log.
*
* Should be assigned to by the user, defaults to a null log.
*/
extern LogAlias log;
}