summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2019-10-15 13:56:12 -0400
committerJoel Fischer <joeljfischer@gmail.com>2019-10-15 13:56:12 -0400
commita2998372a2466551ca179ccb0bd78965546162ea (patch)
treed85f64e9cdb53802d7470199c445d483e246a008
parent4aa3071b243333b273bf2dffa1bfcb8fa3bee555 (diff)
downloadsdl_ios-bugfix/issue-1439-additional-incorrect-type-information.tar.gz
-rw-r--r--SmartDeviceLink/NSMutableDictionary+Store.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/NSMutableDictionary+Store.m b/SmartDeviceLink/NSMutableDictionary+Store.m
index 18e078131..c1a81363b 100644
--- a/SmartDeviceLink/NSMutableDictionary+Store.m
+++ b/SmartDeviceLink/NSMutableDictionary+Store.m
@@ -55,7 +55,7 @@ NS_ASSUME_NONNULL_BEGIN
// The object in the store is not correct, we'll assert in debug and return an error and nil
NSError *wrongObjectError = [NSError sdl_rpcStore_invalidObjectErrorWithObject:obj expectedType:classType];
- SDLLogAssert(@"Retrieving object from store error: %@, for object key: %@, in dictionary: %@", wrongObjectError.localizedFailureReason, name, self, NSStringFromClass(classType), NSStringFromClass([obj class]));
+ SDLLogAssert(@"Retrieving object from store error: %@, for object key: \"%@\", in dictionary: %@", wrongObjectError.localizedFailureReason, name, self);
if (error) {
*error = wrongObjectError;