Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJocelyn Turcotte <jturcotte@woboq.com>2017-05-09 15:24:11 +0300
committerJocelyn Turcotte <jturcotte@woboq.com>2017-05-11 18:22:59 +0300
commit4ad190a558c64aac846dc828438acdec5fe9c6ed (patch)
tree92879909a4036fd51f7ece53654a0474298409c6 /src/gui/folderwatcher_linux.cpp
parent3a193655b3bdb9634c753e9e7b73a56469249655 (diff)
Use Qt logging categories for logging
This gives more insight about the logs and allow setting fine-tuned logging rules. The categories are set to only output Info by default so this allows us to provide more concise logging while keeping the ability to extract more information for a specific category when developping or debugging customer issues. Issue #5647
Diffstat (limited to 'src/gui/folderwatcher_linux.cpp')
-rw-r--r--src/gui/folderwatcher_linux.cpp22
1 files changed, 8 insertions, 14 deletions
diff --git a/src/gui/folderwatcher_linux.cpp b/src/gui/folderwatcher_linux.cpp
index c8024c00b..0635ae244 100644
--- a/src/gui/folderwatcher_linux.cpp
+++ b/src/gui/folderwatcher_linux.cpp
@@ -20,7 +20,6 @@
#include "folderwatcher_linux.h"
#include <cerrno>
-#include <QDebug>
#include <QStringList>
#include <QObject>
#include <QVarLengthArray>
@@ -37,7 +36,7 @@ FolderWatcherPrivate::FolderWatcherPrivate(FolderWatcher *p, const QString& path
_socket.reset( new QSocketNotifier(_fd, QSocketNotifier::Read) );
connect(_socket.data(), SIGNAL(activated(int)), SLOT(slotReceivedNotification(int)));
} else {
- qDebug() << Q_FUNC_INFO << "notify_init() failed: " << strerror(errno);
+ qCDebug(lcFolderWatcher) << "notify_init() failed: " << strerror(errno);
}
QMetaObject::invokeMethod(this, "slotAddFolderRecursive", Q_ARG(QString, path));
@@ -54,7 +53,7 @@ bool FolderWatcherPrivate::findFoldersBelow( const QDir& dir, QStringList& fullL
{
bool ok = true;
if( !(dir.exists() && dir.isReadable()) ) {
- qDebug() << "Non existing path coming in: " << dir.absolutePath();
+ qCDebug(lcFolderWatcher) << "Non existing path coming in: " << dir.absolutePath();
ok = false;
} else {
QStringList nameFilter;
@@ -90,7 +89,7 @@ void FolderWatcherPrivate::inotifyRegisterPath(const QString& path)
void FolderWatcherPrivate::slotAddFolderRecursive(const QString &path)
{
int subdirs = 0;
- qDebug() << "(+) Watcher:" << path;
+ qCDebug(lcFolderWatcher) << "(+) Watcher:" << path;
QDir inPath(path);
inotifyRegisterPath(inPath.absolutePath());
@@ -99,28 +98,26 @@ void FolderWatcherPrivate::slotAddFolderRecursive(const QString &path)
QStringList allSubfolders;
if( !findFoldersBelow(QDir(path), allSubfolders)) {
- qDebug() << "Could not traverse all sub folders";
+ qCDebug(lcFolderWatcher) << "Could not traverse all sub folders";
}
- // qDebug() << "currently watching " << watchedFolders;
QStringListIterator subfoldersIt(allSubfolders);
while (subfoldersIt.hasNext()) {
QString subfolder = subfoldersIt.next();
- // qDebug() << " (**) subfolder: " << subfolder;
QDir folder (subfolder);
if (folder.exists() && !watchedFolders.contains(folder.absolutePath())) {
subdirs++;
if( _parent->pathIsIgnored(subfolder) ) {
- qDebug() << "* Not adding" << folder.path();
+ qCDebug(lcFolderWatcher) << "* Not adding" << folder.path();
continue;
}
inotifyRegisterPath(folder.absolutePath());
} else {
- qDebug() << " `-> discarded:" << folder.path();
+ qCDebug(lcFolderWatcher) << " `-> discarded:" << folder.path();
}
}
if (subdirs >0) {
- qDebug() << " `-> and" << subdirs << "subdirectories";
+ qCDebug(lcFolderWatcher) << " `-> and" << subdirs << "subdirectories";
}
}
@@ -160,7 +157,7 @@ void FolderWatcherPrivate::slotReceivedNotification(int fd)
// cast an inotify_event
event = (struct inotify_event*)&buffer[i];
if (event == NULL) {
- qDebug() << "NULL event";
+ qCDebug(lcFolderWatcher) << "NULL event";
i += sizeof(struct inotify_event);
continue;
}
@@ -168,14 +165,11 @@ void FolderWatcherPrivate::slotReceivedNotification(int fd)
// Fire event for the path that was changed.
if (event->len > 0 && event->wd > -1) {
QByteArray fileName(event->name);
- // qDebug() << Q_FUNC_INFO << event->name;
if (fileName.startsWith("._sync_") ||
fileName.startsWith(".csync_journal.db") ||
fileName.startsWith(".owncloudsync.log")) {
- // qDebug() << "ignore journal";
} else {
const QString p = _watches[event->wd] + '/' + fileName;
- //qDebug() << "found a change in " << p;
_parent->changeDetected(p);
}
}