#pragma once #include #include #include extern std::string log_entries; extern std::vector log_entry_line_offsets; std::string format_log(std::string entry, time_t time); std::string format_log(std::string entry); void log_raw(std::string line, bool print = true); void log(std::string entry, time_t time); void log(std::string entry);