Commit 58c4db92 authored by Max Kellermann's avatar Max Kellermann

output/recorder: log commit errors

parent fe0c4ff3
......@@ -249,7 +249,9 @@ RecorderOutput::Commit(Error &error)
inline void
RecorderOutput::Close()
{
Commit(IgnoreError());
Error error;
if (!Commit(error))
LogError(error);
}
inline void
......
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