Commit 1f780b72 authored by Max Kellermann's avatar Max Kellermann

output/Thread: log exception details

parent 04bf8a6b
...@@ -279,7 +279,7 @@ AudioOutputControl::PlayChunk(std::unique_lock<Mutex> &lock) noexcept ...@@ -279,7 +279,7 @@ AudioOutputControl::PlayChunk(std::unique_lock<Mutex> &lock) noexcept
return false; return false;
} catch (...) { } catch (...) {
FmtError(output_domain, FmtError(output_domain,
"Failed to play on {}", "Failed to play on {}: {}",
GetLogName(), std::current_exception()); GetLogName(), std::current_exception());
InternalCloseError(std::current_exception()); InternalCloseError(std::current_exception());
return false; return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment