1 files changed, 2 insertions, 2 deletions
diff --git a/src/CallManager.cpp b/src/CallManager.cpp
index 45890806..7ecabde0 100644
--- a/src/CallManager.cpp
+++ b/src/CallManager.cpp
@@ -230,9 +230,9 @@ CallManager::handleEvent(const RoomEvent<CallInvite> &callInviteEvent)
return std::tolower(c1) == std::tolower(c2);
}) != sdp.cend();
- nhlog::ui()->debug(std::string("WebRTC: call id: {} - incoming ") +
- (isVideo ? "video" : "voice") + " CallInvite from {}",
+ nhlog::ui()->debug("WebRTC: call id: {} - incoming {} CallInvite from {}",
callInviteEvent.content.call_id,
+ (isVideo ? "video" : "voice"),
callInviteEvent.sender);
if (callInviteEvent.content.call_id.empty())
|