Files
Jessica_Natalia 37e5469cbd initial release
initial release
2026-08-12 13:56:12 -03:00

19 lines
477 B
C++

#pragma once
#include <filesystem>
#include <string>
#include <string_view>
namespace vcs {
struct VcsConfiguration;
void runtime_log_initialize(const VcsConfiguration &configuration);
void runtime_log_shutdown() noexcept;
[[nodiscard]] bool runtime_log_enabled() noexcept;
[[nodiscard]] std::filesystem::path runtime_log_path();
void runtime_log_line(std::string_view line);
void runtime_log_error(std::string_view category, std::string_view message);
} // namespace vcs