[Pkg-owncloud-commits] [owncloud-client] 104/211: Beautified some debug logging strings.

Sandro Knauß hefee-guest at moszumanska.debian.org
Sat Oct 25 09:10:33 UTC 2014


This is an automated email from the git hooks/post-receive script.

hefee-guest pushed a commit to branch master
in repository owncloud-client.

commit c66c01245b5a33671381daeed71368a7a726793d
Author: Klaas Freitag <freitag at owncloud.com>
Date:   Fri Oct 17 11:35:06 2014 +0200

    Beautified some debug logging strings.
---
 src/mirall/ownsql.cpp        | 2 +-
 src/mirall/syncjournaldb.cpp | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/mirall/ownsql.cpp b/src/mirall/ownsql.cpp
index cd36fec..7fd4dab 100644
--- a/src/mirall/ownsql.cpp
+++ b/src/mirall/ownsql.cpp
@@ -123,7 +123,7 @@ int SqlQuery::prepare( const QString& sql)
     if(!_sql.isEmpty() ) {
         SQLITE_DO(sqlite3_prepare_v2(_db, _sql.toUtf8().constData(), -1, &_stmt, 0));
         if( _errId != SQLITE_OK ) {
-            qDebug() << "XXXXXXXXXXXXXXXXXXXX " << _error << "in"<<_sql;
+            qDebug() << "Sqlite prepare statement error:" << _error << "in"<<_sql;
         }
         // Q_ASSERT(_errId == SQLITE_OK);
     }
diff --git a/src/mirall/syncjournaldb.cpp b/src/mirall/syncjournaldb.cpp
index 792c4ce..dd34dea 100644
--- a/src/mirall/syncjournaldb.cpp
+++ b/src/mirall/syncjournaldb.cpp
@@ -59,7 +59,7 @@ void SyncJournalDb::startTransaction()
             return;
         }
         _transaction = 1;
-        // qDebug() << "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Transaction start!";
+        // qDebug() << "XXX Transaction start!";
     } else {
         qDebug() << "Database Transaction is running, do not starting another one!";
     }
@@ -73,7 +73,7 @@ void SyncJournalDb::commitTransaction()
             return;
         }
         _transaction = 0;
-        // qDebug() << "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX Transaction END!";
+        // qDebug() << "XXX Transaction END!";
     } else {
         qDebug() << "No database Transaction to commit";
     }

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud-client.git



More information about the Pkg-owncloud-commits mailing list