Skip to content

Commit a94cb0b

Browse files
committed
Brendan's comments
1 parent 763b791 commit a94cb0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/log.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@ export class Log {
121121
AddOptionsToSearchParams(options, searchParams);
122122

123123
await this.config.applytoHTTPSOptions(requestOptions);
124-
console.log(requestURL.toString())
124+
125125
const req = await fetch(requestURL.toString(), requestOptions)
126126
.then(response => {
127127
const status = response.status;
128-
if (status == 200) {
128+
if (status === 200) {
129129
response.body.pipe(stream) // TODO: the follow search param still has the stream close prematurely based on my testing
130130
} else if (status === 500) {
131131
const v1status = response.body as V1Status;

0 commit comments

Comments
 (0)