Log message cleanup

This commit is contained in:
Robin E. R. Davies
2025-08-15 06:18:41 -04:00
parent 57d112e616
commit cb70bc82d5
2 changed files with 2 additions and 4 deletions
+1 -3
View File
@@ -1151,7 +1151,7 @@ namespace pipedal
void RestartAlsa() void RestartAlsa()
{ {
std::lock_guard lock{restartMutex}; std::lock_guard lock{restartMutex};
Lv2Log::info("Restarting ALSA devices."); Lv2Log::debug("Restarting ALSA devices.");
try try
{ {
@@ -1517,7 +1517,6 @@ namespace pipedal
} }
catch (const std::exception &e) catch (const std::exception &e)
{ {
Lv2Log::info(SS("Soft audio restart failed. " << e.what()));
RestartAlsa(); RestartAlsa();
audioRunning = true; audioRunning = true;
} }
@@ -1588,7 +1587,6 @@ namespace pipedal
} }
catch (const std::exception &e) catch (const std::exception &e)
{ {
Lv2Log::info(SS("Soft audio restart failed. " << e.what()));
RestartAlsa(); RestartAlsa();
audioRunning = true; audioRunning = true;
} }
+1 -1
View File
@@ -1464,7 +1464,7 @@ void WebServerImpl::DisplayIpAddresses()
if (hostName.length() != 0) if (hostName.length() != 0)
{ {
std::stringstream ss; std::stringstream ss;
ss << "Listening on mDns address " << hostName << ":" << this->port; ss << "Listening on mDns address " << hostName << ".local:" << this->port;
Lv2Log::info(ss.str()); Lv2Log::info(ss.str());
} }
auto ethAddresses = GetEthernetIpv4Addresses(); auto ethAddresses = GetEthernetIpv4Addresses();