Skip to content

Commit 3a20ff3

Browse files
committed
remove some console.logs
1 parent 24315b0 commit 3a20ff3

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/api-tool.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ let params: Record<string, string> = {};
5656

5757
let { endpoint } = argv;
5858

59-
console.log(argv);
6059
if (_.last(argv._)?.toString().startsWith('http')) {
6160
// The user specified a full url, they probably just want to run it with the
6261
// right api key. So infer all the params from the passed url
@@ -76,13 +75,10 @@ if (_.last(argv._)?.toString().startsWith('http')) {
7675
}
7776
apiEnv.keyEnv = hostEntry.keyEnv;
7877
apiEnv.keyType = hostEntry.keyType || _.first(config.keyTypes);
79-
console.log('2', apiEnv);
8078
}
8179

8280
apiEnv.key = apiEnv.key || findApiKey({ keyEnv: apiEnv.keyEnv, keyType: apiEnv.keyType });
8381

84-
console.log('3', apiEnv);
85-
8682
endpoint = url.pathname;
8783
params = queryString.parse(url.search.substring(1)) as Record<string, string>;
8884
} else {

0 commit comments

Comments
 (0)