mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 04:10:59 -05:00
Log the error messages returned by the API
This commit is contained in:
parent
8f5842b480
commit
6c6c7435da
@ -29,8 +29,8 @@ export default async(client:TClient)=>{
|
||||
headers: {'User-Agent':`${client.user.username} - YTModule/undici`}
|
||||
}).then(async resp=>Data = await resp.body.json());
|
||||
YTChannelName = Data.items[0].snippet.channelTitle;
|
||||
} catch {
|
||||
Logger.console('log', 'YTModule', `Failed to get video data for "${YTChannelName}" from YouTube API`);
|
||||
} catch (err) {
|
||||
Logger.console('log', 'YTModule', `Failed to get video data for "${YTChannelID}" from YouTube API: ${err}`);
|
||||
}
|
||||
if (!Data) return;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user