From 88f1fe1a9edba282faaee263a8945a46cd600ad7 Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Thu, 28 Aug 2025 16:04:25 +0200 Subject: [PATCH] fix:(logs): add a missing category for one fatal log line Signed-off-by: Matthieu Gallien --- src/libsync/discovery.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libsync/discovery.cpp b/src/libsync/discovery.cpp index 118e31b346..1b314040d6 100644 --- a/src/libsync/discovery.cpp +++ b/src/libsync/discovery.cpp @@ -382,7 +382,8 @@ bool ProcessDirectoryJob::handleExcluded(const QString &path, const Entries &ent case CSYNC_NOT_EXCLUDED: case CSYNC_FILE_SILENTLY_EXCLUDED: case CSYNC_FILE_EXCLUDE_AND_REMOVE: - qFatal("These were handled earlier"); + qCFatal(lcDisco) << "These were handled earlier"; + break; case CSYNC_FILE_EXCLUDE_LIST: item->_errorString = tr("File is listed on the ignore list."); break;