Clean shutdown, stability

This commit is contained in:
Robin Davies
2024-09-21 13:18:00 -04:00
parent 951a7a73de
commit 2b13dc1c96
30 changed files with 820 additions and 358 deletions
+1 -1
View File
@@ -150,7 +150,7 @@ namespace pipedal
static void error(const char *format, ...)
{
if (Lv2Log::log_level_ >= LogLevel::Warning)
if (Lv2Log::log_level_ >= LogLevel::Error)
{
va_list arglist;
va_start(arglist, format);
+3
View File
@@ -35,4 +35,7 @@ namespace pipedal {
std::u32string ToUtf32(const std::string &s);
inline bool isPathSeperator(char c) { return c == '/' || c == std::filesystem::path::preferred_separator;}
std::string GetHostName();
}