Skip to content

Commit

Permalink
fix: remove some console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
voximity committed Dec 19, 2023
1 parent 0a5052d commit 6a7888d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/webserver/backend/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ export async function getSSLKeys(dataPath: string) {
// make sure the cert is not expired
if (certData.expires < now) certData = undefined;
} catch (e) {
console.error('1)', e);
// nothing to do here - probably bad json
}
}
Expand All @@ -40,7 +39,6 @@ export async function getSSLKeys(dataPath: string) {
fs.writeFileSync(certsPath, JSON.stringify(certData));
certData.new = true;
} catch (e) {
console.error('2)', e);
// probably missing openssl or something
}
}
Expand Down

0 comments on commit 6a7888d

Please sign in to comment.