1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2025-02-09 08:18:49 +01:00

Remove extra debugging

This commit is contained in:
Jonas Kvinge 2019-08-05 23:03:04 +02:00
parent 140935bd8c
commit cd05b10168

View File

@ -646,8 +646,6 @@ void CollectionWatcher::AddWatch(const Directory &dir, const QString &path) {
if (!QFile::exists(path)) return;
qLog(Debug) << "Adding collection watch for" << path;
connect(fs_watcher_, SIGNAL(PathChanged(const QString&)), this, SLOT(DirectoryChanged(const QString&)), Qt::UniqueConnection);
fs_watcher_->AddPath(path);
subdir_mapping_[path] = dir;
@ -658,7 +656,6 @@ void CollectionWatcher::RemoveWatch(const Directory &dir, const Subdirectory &su
for (const QString &subdir_path : subdir_mapping_.keys(dir)) {
if (subdir_path != subdir.path) continue;
qLog(Debug) << "Removing collection watch for" << subdir_path;
fs_watcher_->RemovePath(subdir_path);
subdir_mapping_.remove(subdir_path);
break;
@ -673,7 +670,6 @@ void CollectionWatcher::RemoveDirectory(const Directory &dir) {
// Stop watching the directory's subdirectories
for (const QString &subdir_path : subdir_mapping_.keys(dir)) {
qLog(Debug) << "Removing collection watch for" << subdir_path;
fs_watcher_->RemovePath(subdir_path);
subdir_mapping_.remove(subdir_path);
}