LogManager cleanup

This commit is contained in:
Adam Honse
2026-05-05 20:20:21 -05:00
parent 17313f0d94
commit 0a77058d3b
14 changed files with 481 additions and 325 deletions

View File

@@ -23,12 +23,12 @@ OpenRGBPluginAPI::OpenRGBPluginAPI()
/*---------------------------------------------------------*\
| LogManager APIs |
\*---------------------------------------------------------*/
void OpenRGBPluginAPI::append(const char* filename, int line, unsigned int level, const char* fmt, ...)
void OpenRGBPluginAPI::LogEntry(const char* filename, int line, unsigned int level, const char* fmt, ...)
{
va_list va;
va_start(va, fmt);
log_manager->append_va(filename, line, level, fmt, va);
log_manager->LogEntry_va(filename, line, level, fmt, va);
va_end(va);
}