Refactor logging to use util::logf and add log utility header

This commit is contained in:
scawful
2025-01-22 13:36:37 -05:00
parent a5b94ab173
commit b245b10963
9 changed files with 75 additions and 50 deletions

View File

@@ -2,6 +2,7 @@
#define YAZE_UTIL_HEX_H
#include <cstdint>
#include <string>
namespace yaze {
namespace util {
@@ -17,4 +18,6 @@ std::string HexLong(uint32_t dword, HexStringParams params = {});
std::string HexLongLong(uint64_t qword, HexStringParams params = {});
} // namespace util
} // namespace yaze
} // namespace yaze
#endif