Additional logging + FFMpeg changes; ffmpeg output will be in the log now

This commit is contained in:
2025-08-15 18:03:45 -04:00
parent 8388fd5d99
commit afbaf2bc65
6 changed files with 43 additions and 12 deletions

View File

@@ -7,11 +7,15 @@
#define LOG_INFO_FORMAT "[INFO] "
#define LOG_IMGUI_FORMAT "[IMGUI] "
#define LOG_INIT_ERROR "[ERROR] Failed to open log file: {}"
#define LOG_COMMAND_FORMAT "[COMMAND] "
#define LOG_PATH "log.txt"
void log_init(const std::string& file);
std::string log_path_get(void);
void log_init(void);
void log_write(const std::string& file);
void log_error(const std::string& error);
void log_info(const std::string& info);
void log_warning(const std::string& warning);
void log_imgui(const std::string& imgui);
void log_command(const std::string& command);
void log_free(void);