summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGatis Paeglis <gatis.paeglis@qt.io>2016-10-18 17:35:02 +0200
committerGatis Paeglis <gatis.paeglis@qt.io>2016-10-19 12:21:26 +0000
commit828f7a57eeff5b30d027913085d7dedac12cb432 (patch)
tree1d4adc9da38d2453f7454e89e091cba527dc6e05
parentcccd8d6c20323686f95fcdb4f0bd0e3e27723bb9 (diff)
debug: use easier to read date format
Change-Id: I02049ede2e996bfa331a55efc6988f0b269e6e5a Reviewed-by: Gatis Paeglis <gatis.paeglis@qt.io>
-rw-r--r--src/lib/qotaclientasync.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/qotaclientasync.cpp b/src/lib/qotaclientasync.cpp
index d0303c3..8c3ec55 100644
--- a/src/lib/qotaclientasync.cpp
+++ b/src/lib/qotaclientasync.cpp
@@ -148,15 +148,15 @@ QJsonDocument QOTAClientAsync::info(QOTAClientPrivate::QueryTarget target, bool
void QOTAClientAsync::multiprocessLock(const QString &method)
{
- qCDebug(qota) << QTime::currentTime() << method << "- waiting for lock...";
+ qCDebug(qota) << QTime::currentTime().toString() << method << "- waiting for lock...";
ostree_sysroot_lock (m_sysroot, 0);
- qCDebug(qota) << QTime::currentTime() << " lock acquired";
+ qCDebug(qota) << QTime::currentTime().toString() << " lock acquired";
}
void QOTAClientAsync::multiprocessUnlock()
{
ostree_sysroot_unlock (m_sysroot);
- qCDebug(qota) << QTime::currentTime() << "lock released";
+ qCDebug(qota) << QTime::currentTime().toString() << "lock released";
}
QString QOTAClientAsync::defaultRevision()