1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-17 08:20:58 -05:00

Log the error messages returned by the API

This commit is contained in:
toast-ts 2024-01-27 02:48:56 +11:00
parent 8f5842b480
commit 6c6c7435da

View File

@ -29,8 +29,8 @@ export default async(client:TClient)=>{
headers: {'User-Agent':`${client.user.username} - YTModule/undici`} headers: {'User-Agent':`${client.user.username} - YTModule/undici`}
}).then(async resp=>Data = await resp.body.json()); }).then(async resp=>Data = await resp.body.json());
YTChannelName = Data.items[0].snippet.channelTitle; YTChannelName = Data.items[0].snippet.channelTitle;
} catch { } catch (err) {
Logger.console('log', 'YTModule', `Failed to get video data for "${YTChannelName}" from YouTube API`); Logger.console('log', 'YTModule', `Failed to get video data for "${YTChannelID}" from YouTube API: ${err}`);
} }
if (!Data) return; if (!Data) return;