removed log

This commit is contained in:
jusax23 2023-03-07 18:49:21 +01:00
parent 999ef760c0
commit 84745ac2f2
Signed by: jusax23
GPG key ID: 499E2AA870C1CD41
3 changed files with 0 additions and 3 deletions

View file

@ -158,7 +158,6 @@ export const remote1 = {
client.remoteKey = data.publicKey;
aws("ok", client.challenge);
} catch (e) {
console.log(e);
client.suspect();
aws("error", "signature");
}

View file

@ -128,7 +128,6 @@ export class postClient {
send = true;
});
} catch (e) {
console.log(e);
error("POST", "act error:", e);
}

View file

@ -103,7 +103,6 @@ const updateCert = async (server: outbagServer) => {
export const getRemote = async (server: outbagServer) => {
if (certList[server.tag] == null || certList[server.tag].exp >= uts()) await updateCert(server);
console.log(server.tag, certList[server.tag]);
if (certList[server.tag] != null) return certList[server.tag].cert;
else throw new Error("Cert Error");
};