When we skip a watcher event on mac, we log the file path but not the
event flags which came with it. Let's add it, it should help figure out
what's going on with #2578.
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
QString fn = qstring.normalized(QString::NormalizationForm_C);
if (!(eventFlags[i] & c_interestingFlags)) {
- qCDebug(lcFolderWatcher) << "Ignoring non-content changes for" << fn;
+ qCDebug(lcFolderWatcher) << "Ignoring non-content changes for" << fn << eventFlags[i];
continue;
}