Merge branch 'feature/cookies_for_url' into 'develop'
reduce cookie noise See merge request BPHV_MIPS/mvm_core!218
This commit is contained in:
commit
9ffb6f044d
@ -311,8 +311,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
MVMCoreLog(@"********************************* Cookie Sent *********************************");
|
MVMCoreLog(@"********************************* Cookie Sent *********************************");
|
||||||
[[[NSHTTPCookieStorage sharedHTTPCookieStorage] cookies] enumerateObjectsUsingBlock:^(NSHTTPCookie * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
|
[[[NSHTTPCookieStorage sharedHTTPCookieStorage] cookiesForURL:request.URL] enumerateObjectsUsingBlock:^(NSHTTPCookie * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
|
||||||
MVMCoreLog(@"Cookie Name: %@, Cookie Value: %@",obj.name, obj.value);
|
MVMCoreLog(@"Cookie Name: %@, Cookie Value: %@, Domain: %@", obj.name, obj.value, obj.domain);
|
||||||
}];
|
}];
|
||||||
|
|
||||||
[[NSNotificationCenter defaultCenter] postNotificationName:MVMCoreNotificationGoingToServer object:nil];
|
[[NSNotificationCenter defaultCenter] postNotificationName:MVMCoreNotificationGoingToServer object:nil];
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user