add logging

This commit is contained in:
Mike Nolan 2022-05-03 09:05:37 -05:00
parent 629fd55e1f
commit def2a8bbaa
1 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ namespace Tesses.YouTubeDownloader
Id=video.Id; Id=video.Id;
Title = video.Title; Title = video.Title;
AuthorChannelId = video.Author.ChannelId; AuthorChannelId = video.Author.ChannelId;
AuthorTitle = video.Author.Title; AuthorTitle = video.Author.ChannelTitle;
Description = video.Description; Description = video.Description;
Keywords=video.Keywords.ToArray(); Keywords=video.Keywords.ToArray();
Likes=video.Engagement.LikeCount; Likes=video.Engagement.LikeCount;
@ -259,7 +259,7 @@ namespace Tesses.YouTubeDownloader
{ {
Title = playlist.Title; Title = playlist.Title;
AuthorChannelId = playlist.Author.ChannelId; AuthorChannelId = playlist.Author.ChannelId;
AuthorTitle=playlist.Author.Title; AuthorTitle=playlist.Author.ChannelTitle;
Description =playlist.Description; Description =playlist.Description;
Id=playlist.Id; Id=playlist.Id;
Videos = videos.Select<IVideo,string>((e)=>{return e.Id;}).ToList(); Videos = videos.Select<IVideo,string>((e)=>{return e.Id;}).ToList();