@@ -379,7 +379,7 @@ void SyncEngine::startSync()
379379 return ;
380380 }
381381
382- qCInfo (lcEngine) << " #### Discovery start ####################################################" << _duration. duration () ;
382+ qCInfo (lcEngine) << " #### Discovery start ####################################################" << _duration;
383383 qCInfo (lcEngine) << " Server" << account ()->capabilities ().status ().versionString ()
384384 << (account ()->isHttp2Supported () ? " Using HTTP/2" : " " );
385385 _progressInfo->_status = ProgressInfo::Discovery;
@@ -470,7 +470,7 @@ void SyncEngine::slotDiscoveryFinished()
470470 return ;
471471 }
472472
473- qCInfo (lcEngine) << " #### Discovery end ####################################################" << _duration. duration () ;
473+ qCInfo (lcEngine) << " #### Discovery end ####################################################" << _duration;
474474
475475 // Sanity check
476476 if (!_journal->open ()) {
@@ -537,14 +537,14 @@ void SyncEngine::slotDiscoveryFinished()
537537 erase_if (_syncItems, [&names](const SyncFileItemPtr &i) { return !names.contains (QStringView{i->localName ()}); });
538538 }
539539
540- qCInfo (lcEngine) << " #### Reconcile (aboutToPropagate) ####################################################" << _duration. duration () ;
540+ qCInfo (lcEngine) << " #### Reconcile (aboutToPropagate) ####################################################" << _duration;
541541
542542 _localDiscoveryPaths.clear ();
543543
544544 // To announce the beginning of the sync
545545 Q_EMIT aboutToPropagate (_syncItems);
546546
547- qCInfo (lcEngine) << " #### Reconcile (aboutToPropagate OK) ####################################################" << _duration. duration () ;
547+ qCInfo (lcEngine) << " #### Reconcile (aboutToPropagate OK) ####################################################" << _duration;
548548
549549 // it's important to do this before ProgressInfo::start(), to announce start of new sync
550550 _progressInfo->_status = ProgressInfo::Propagation;
@@ -582,7 +582,7 @@ void SyncEngine::slotDiscoveryFinished()
582582 _propagator->start (std::move (_syncItems));
583583
584584
585- qCInfo (lcEngine) << " #### Post-Reconcile end ####################################################" << _duration. duration () ;
585+ qCInfo (lcEngine) << " #### Post-Reconcile end ####################################################" << _duration;
586586 };
587587
588588 finish ();
@@ -656,7 +656,7 @@ void SyncEngine::slotPropagationFinished(bool success)
656656
657657void SyncEngine::finalize (bool success)
658658{
659- qCInfo (lcEngine) << " Sync run for" << _localPath << " took" << _duration. duration () ;
659+ qCInfo (lcEngine) << " Sync run for" << _localPath << " took" << _duration;
660660 _duration.stop ();
661661
662662 if (_discoveryPhase) {
0 commit comments