From 3e4aedc42122a66bc0ce0609d42deb2da8675a6d Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Sun, 24 Jul 2022 16:26:02 -0400 Subject: [PATCH] Updated logging --- README.md | 2 +- src/mosaic.ts | 4 ++-- src/server.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 613c871..1780c18 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ Furthermore, if the person who posted a FixTweet link forgot to strip tracking, In many ways, FixTweet has richer embeds and does more. Here's a table comparing some of FixTweet's features compared to Twitter default embeds as well as other embedding services -| | FixTweet | Twitter default | vxTwitter (BetterTwitFix) | Twxtter (sixFix) | +| | FixTweet | Twitter default | vxTwitter (BetterTwitFix) | Twxtter (sixFix) | | --------------------------------------- | :---------------------------------: | :------------------------------: | :------------------------------------------: | :-----------------------------------: | | Embed Tweets / Images | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | Embed profile pictures on text Tweets | :heavy_check_mark: | :x: | :heavy_check_mark: | :heavy_check_mark: | diff --git a/src/mosaic.ts b/src/mosaic.ts index 9b9a68d..8cfedc0 100644 --- a/src/mosaic.ts +++ b/src/mosaic.ts @@ -28,7 +28,7 @@ export const handleMosaic = async ( media.media_url_https?.match(/(?<=\/media\/)[a-zA-Z0-9_\-]+(?=[\.\?])/g)?.[0] || '' ); - console.log('mosaicMedia', mosaicMedia); + // console.log('mosaicMedia', mosaicMedia); // TODO: use a better system for this, 0 gets png 1 gets webp, usually let constructUrl = `https://${selectedDomain}/${ userAgent.indexOf('Telegram') > -1 ? '0' : '1' @@ -46,7 +46,7 @@ export const handleMosaic = async ( constructUrl += `/${mosaicMedia[3]}`; } - console.log(`Mosaic URL: ${constructUrl}`) + console.log(`Mosaic URL: ${constructUrl}`); return { media_url_https: constructUrl, diff --git a/src/server.ts b/src/server.ts index 0bf8f85..6f2a51a 100644 --- a/src/server.ts +++ b/src/server.ts @@ -26,7 +26,7 @@ const statusRequest = async ( } if (isBotUA || flags.direct) { - console.log('Matched bot UA'); + console.log(`Matched bot UA ${userAgent}`); let response: Response;