Skip to content

Commit 6bda54b

Browse files
committed
Disable some extra debug output
1 parent 132260d commit 6bda54b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cert-check-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class CertCheckServer {
4949
private server: Mockttp | undefined;
5050

5151
async start(targetUrl: string) {
52-
this.server = getLocal({ https: this.config.https, debug: true, cors: true });
52+
this.server = getLocal({ https: this.config.https, cors: true });
5353
await this.server.start();
5454

5555
const certificatePem = await readFile(this.config.https.certPath);

test/interceptors.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const newCertPair = generateCACertificate({ commonName: 'HTTP Toolkit CA - DO NO
1515
fs.writeFileSync(keyPath, newCertPair.key);
1616
fs.writeFileSync(certPath, newCertPair.cert);
1717

18-
const server = getLocal({ https: { certPath, keyPath }, debug: true });
18+
const server = getLocal({ https: { certPath, keyPath } });
1919
const interceptors = buildInterceptors({ configPath, https: { certPath, keyPath } });
2020

2121
_.forEach(interceptors, (interceptor, name) =>

0 commit comments

Comments
 (0)