Skip to content

Commit 5f2d10b

Browse files
committed
-More log statements
1 parent 4ecb717 commit 5f2d10b

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

https.ios.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

https.ios.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,13 @@ export function request(opts: Https.HttpsRequestOptions): Promise<Https.HttpsRes
187187
let count = dict.count;
188188
console.log("The count for dict is");
189189
console.log("Count " + count);
190+
191+
let keys = dict.allKeys;
192+
for( var key in keys){
193+
console.log("Checking for key " + key);
194+
console.log("" + dict[key]);
195+
}
196+
190197
manager[methods[opts.method]](opts.url, dict, function success(task: NSURLSessionDataTask, data: any) {
191198
AFSuccess(resolve, task, data);
192199
}, function failure(task, error) {

0 commit comments

Comments
 (0)