summaryrefslogtreecommitdiff
path: root/src/lib/writer.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-12-05 21:36:53 +0100
committerCarl Hetherington <cth@carlh.net>2025-12-05 21:36:53 +0100
commit59e358ae25f84314afc6d8235aecaec124822f3f (patch)
tree86a353b49bcc8b0cd5d3a9a4db4ca13e4f5f20f0 /src/lib/writer.cc
parent15add8826db680f0e1ad13246e0411d5f83f5296 (diff)
Cleanup: can now remove the _NC log variants.
Diffstat (limited to 'src/lib/writer.cc')
-rw-r--r--src/lib/writer.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc
index 6a74718c3..20bf2cab8 100644
--- a/src/lib/writer.cc
+++ b/src/lib/writer.cc
@@ -578,18 +578,18 @@ void
Writer::finish()
{
if (_thread.joinable()) {
- LOG_GENERAL_NC("Terminating writer thread");
+ LOG_GENERAL("Terminating writer thread");
terminate_thread(true);
}
- LOG_GENERAL_NC("Finishing ReelWriters");
+ LOG_GENERAL("Finishing ReelWriters");
for (auto& reel: _reels) {
write_hanging_text(reel);
reel.finish(_output_dir);
}
- LOG_GENERAL_NC("Writing XML");
+ LOG_GENERAL("Writing XML");
dcp::DCP dcp(_output_dir);