diff --git a/src/AlsaDriver.cpp b/src/AlsaDriver.cpp index f00461e..aa21092 100644 --- a/src/AlsaDriver.cpp +++ b/src/AlsaDriver.cpp @@ -1151,7 +1151,7 @@ namespace pipedal void RestartAlsa() { std::lock_guard lock{restartMutex}; - Lv2Log::info("Restarting ALSA devices."); + Lv2Log::debug("Restarting ALSA devices."); try { @@ -1517,7 +1517,6 @@ namespace pipedal } catch (const std::exception &e) { - Lv2Log::info(SS("Soft audio restart failed. " << e.what())); RestartAlsa(); audioRunning = true; } @@ -1588,7 +1587,6 @@ namespace pipedal } catch (const std::exception &e) { - Lv2Log::info(SS("Soft audio restart failed. " << e.what())); RestartAlsa(); audioRunning = true; } diff --git a/src/WebServer.cpp b/src/WebServer.cpp index 4a86c9a..b6f00ef 100644 --- a/src/WebServer.cpp +++ b/src/WebServer.cpp @@ -1464,7 +1464,7 @@ void WebServerImpl::DisplayIpAddresses() if (hostName.length() != 0) { std::stringstream ss; - ss << "Listening on mDns address " << hostName << ":" << this->port; + ss << "Listening on mDns address " << hostName << ".local:" << this->port; Lv2Log::info(ss.str()); } auto ethAddresses = GetEthernetIpv4Addresses();