2
0
mirror of https://github.com/telegramdesktop/tdesktop synced 2025-09-07 18:06:04 +00:00

Format dbus errors logging

This commit is contained in:
Ilya Fedin
2021-01-22 16:07:31 +04:00
committed by John Preston
parent 1e2759840d
commit 690c5df87c
3 changed files with 26 additions and 13 deletions

View File

@@ -430,7 +430,10 @@ bool IsSNIAvailable() {
break;
}
LOG(("SNI Error: %1").arg(reply.error().message()));
LOG(("SNI Error: %1: %2")
.arg(reply.error().name())
.arg(reply.error().message()));
return false;
}