From d75330f1cc8c5a91dd5b8f4956250cfafe9f1d33 Mon Sep 17 00:00:00 2001 From: Danish Phiroz Date: Thu, 12 Sep 2024 11:01:21 -0500 Subject: [PATCH] PR Review comments addressed --- MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.swift b/MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.swift index 2967ba9..948aaed 100644 --- a/MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.swift +++ b/MVMCore/MVMCore/ActionHandling/MVMCoreActionHandler.swift @@ -158,7 +158,7 @@ public protocol MVMCoreJSONActionHandlerProtocol: MVMCoreActionHandlerProtocol { errorObject.requestUrl = browserUrl } if let humanReadableMessage = (error as? HumanReadableDecodingErrorProtocol)?.readableDescription { - errorObject.messageToLog = "Failed to decode the \(actionType ?? "actions") model." + humanReadableMessage + errorObject.messageToLog = "Failed to decode the \(actionType ?? "actions") model. " + humanReadableMessage } defaultHandleActionError(errorObject, additionalData: additionalData) }