JKSV/include/logging/logger.hpp
2025-09-04 15:34:43 -04:00

14 lines
334 B
C++

#pragma once
#include <string_view>
namespace logger
{
/// @brief Creates the log file if it doesn't exist already.
void initialize();
/// @brief Logs a formatted string.
/// @param format Format of string.
/// @param arguments Va arguments.
void log(const char *format, ...) noexcept;
} // namespace logger