Folder: Version debug at end

Often users send us parts of logs with this information missing.
This commit is contained in:
Markus Goetz 2015-07-30 14:11:29 +02:00
parent 7f8e9a0e70
commit 48dac23b0f

View file

@ -912,6 +912,14 @@ void Folder::slotCsyncUnavailable()
void Folder::slotSyncFinished()
{
qDebug() << " - client version" << qPrintable(Theme::instance()->version())
<< " Qt" << qVersion()
#if QT_VERSION >= QT_VERSION_CHECK(5,0,0)
<< " SSL " << QSslSocket::sslLibraryVersionString().toUtf8().data()
#endif
;
if( _csyncError ) {
qDebug() << "-> SyncEngine finished with ERROR, warn count is" << _syncResult.warnCount();
} else {