mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-22 01:34:13 -05:00
14 lines
334 B
C++
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
|