diff --git a/src/chat/encryption/lime-x3dh-encryption-engine.cpp b/src/chat/encryption/lime-x3dh-encryption-engine.cpp
index 39c2ac9d0a955c7f4d29bf60dc5069431337a528..5e356bf3301a8dc018e425d9f5ec7e4f874d62f7 100644
--- a/src/chat/encryption/lime-x3dh-encryption-engine.cpp
+++ b/src/chat/encryption/lime-x3dh-encryption-engine.cpp
@@ -722,12 +722,12 @@ list<EncryptionParameter> LimeX3dhEncryptionEngine::getEncryptionParameters(cons
 	const auto &contactAddress = account->getContactAddress();
 	if (!contactAddress) {
 		lWarning()
-		    << "[LIME] No contactAddress available, unable to setup identity key for ZRTP auxiliary shared secret";
+		    << "[LIME] No contactAddress available for account " << account << ", unable to setup identity key for ZRTP auxiliary shared secret";
 		return {};
 	}
+
 	string localDeviceId = contactAddress->asStringUriOnly();
 	vector<uint8_t> Ik;
-
 	try {
 		limeManager->get_selfIdentityKey(localDeviceId, Ik);
 	} catch (const exception &e) {