From 4dff07db50c79a308ee9d1447458aea7716764bc Mon Sep 17 00:00:00 2001 From: Untone Date: Mon, 4 Mar 2024 19:01:45 +0300 Subject: [PATCH] less-logs --- index.mjs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.mjs b/index.mjs index 97a18ae..22ba208 100644 --- a/index.mjs +++ b/index.mjs @@ -9,7 +9,7 @@ const authorizer = new Authorizer({ redirectURL: process.env.REDIRECT_URL || 'https://testing.discours.io', }); -console.info(authorizer) +// console.info(authorizer) const server = Server.configure({ port, @@ -53,7 +53,7 @@ const server = Server.configure({ } authorizer.getProfile(params).then((r) => { - console.debug(r) + // console.debug(r) const { profile: author } = r.data.app_data const author_id = author.get('id') if(author_id) { @@ -100,4 +100,4 @@ const server = Server.configure({ }, }); -server.listen().then(r => console.info(r)); +server.listen().then(r => console.info('started'));