File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ - (void)assignUuidNewMethod:(NSString *)uuid {
152
152
if (persistedUuidUnique != nil ) {
153
153
// Check if value has UUID format.
154
154
if ((bool )[[NSUUID alloc ] initWithUUIDString: persistedUuidUnique]) {
155
- [[ADJAdjustFactory logger ] verbose: @" Value found and read from the keychain key %@ " , uniqueKey ];
155
+ [[ADJAdjustFactory logger ] verbose: @" Value found and read from the keychain new way " ];
156
156
157
157
// Value written in keychain seems to have UUID format.
158
158
self.uuid = persistedUuidUnique;
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ - (BOOL)setValue:(NSString *)value forKeychainKey:(NSString *)key inService:(NSS
67
67
if (NULL == &kSecAttrAccessGroupToken ) {
68
68
[[ADJAdjustFactory logger ] warn: @" Value unsuccessfully written to the keychain old way" ];
69
69
} else {
70
- [[ADJAdjustFactory logger ] warn: @" Value unsuccessfully written to the keychain new way with key %@ " , key ];
70
+ [[ADJAdjustFactory logger ] warn: @" Value unsuccessfully written to the keychain new way" ];
71
71
}
72
72
73
73
return NO ;
@@ -79,13 +79,13 @@ - (BOOL)setValue:(NSString *)value forKeychainKey:(NSString *)key inService:(NSS
79
79
if (NULL == &kSecAttrAccessGroupToken ) {
80
80
[[ADJAdjustFactory logger ] verbose: @" Value successfully written to the keychain old way" ];
81
81
} else {
82
- [[ADJAdjustFactory logger ] verbose: @" Value successfully written to the keychain new way with key %@ " , key ];
82
+ [[ADJAdjustFactory logger ] verbose: @" Value successfully written to the keychain new way" ];
83
83
}
84
84
} else {
85
85
if (NULL == &kSecAttrAccessGroupToken ) {
86
86
[[ADJAdjustFactory logger ] warn: @" Value unsuccessfully written to the keychain after the check old way" ];
87
87
} else {
88
- [[ADJAdjustFactory logger ] warn: @" Value unsuccessfully written to the keychain after the check new way with key %@ " , key ];
88
+ [[ADJAdjustFactory logger ] warn: @" Value unsuccessfully written to the keychain after the check new way" ];
89
89
}
90
90
}
91
91
You can’t perform that action at this time.
0 commit comments