File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ let params: Record<string, string> = {};
56
56
57
57
let { endpoint } = argv ;
58
58
59
- console . log ( argv ) ;
60
59
if ( _ . last ( argv . _ ) ?. toString ( ) . startsWith ( 'http' ) ) {
61
60
// The user specified a full url, they probably just want to run it with the
62
61
// right api key. So infer all the params from the passed url
@@ -76,13 +75,10 @@ if (_.last(argv._)?.toString().startsWith('http')) {
76
75
}
77
76
apiEnv . keyEnv = hostEntry . keyEnv ;
78
77
apiEnv . keyType = hostEntry . keyType || _ . first ( config . keyTypes ) ;
79
- console . log ( '2' , apiEnv ) ;
80
78
}
81
79
82
80
apiEnv . key = apiEnv . key || findApiKey ( { keyEnv : apiEnv . keyEnv , keyType : apiEnv . keyType } ) ;
83
81
84
- console . log ( '3' , apiEnv ) ;
85
-
86
82
endpoint = url . pathname ;
87
83
params = queryString . parse ( url . search . substring ( 1 ) ) as Record < string , string > ;
88
84
} else {
You can’t perform that action at this time.
0 commit comments