see whats happening for once

This commit is contained in:
Demetria Lovato 2021-06-25 20:22:31 -07:00
parent 4b4db4fbff
commit f336b73b68
8 changed files with 27 additions and 1 deletions

Binary file not shown.

View File

@ -91,6 +91,7 @@ namespace youtube_downloader.Server.Functions
} }
}catch(Exception ex) }catch(Exception ex)
{ {
Console.WriteLine(ex.Message); Console.WriteLine(ex.Message);
_ = ex; _ = ex;
} }
@ -181,6 +182,8 @@ namespace youtube_downloader.Server.Functions
} }
}catch(Exception ex) }catch(Exception ex)
{ {
Console.WriteLine(ex.Message);
_ = ex; _ = ex;
} }
} }
@ -236,6 +239,8 @@ namespace youtube_downloader.Server.Functions
} }
}catch(Exception ex) }catch(Exception ex)
{ {
Console.WriteLine(ex.Message);
_ = ex; _ = ex;
} }
} }
@ -360,6 +365,8 @@ namespace youtube_downloader.Server.Functions
} }
catch(Exception ex) catch(Exception ex)
{ {
Console.WriteLine(ex.Message);
_ = ex; _ = ex;
} }
} }
@ -446,6 +453,8 @@ namespace youtube_downloader.Server.Functions
Directory.CreateDirectory(Path.GetDirectoryName(dir)); Directory.CreateDirectory(Path.GetDirectoryName(dir));
}catch(Exception ex) }catch(Exception ex)
{ {
Console.WriteLine(ex.Message);
_ = ex; _ = ex;
} }
return dir; return dir;

View File

@ -114,6 +114,8 @@ namespace youtube_downloader.Server.Models
sv = SavedVideo.CreateFrom(res, vinfo, Functions.Downloader.DL._DownloadThumbnail); sv = SavedVideo.CreateFrom(res, vinfo, Functions.Downloader.DL._DownloadThumbnail);
}catch(Exception ex) }catch(Exception ex)
{ {
Console.WriteLine(ex.Message);
sv = null; sv = null;
_ = ex; _ = ex;
} }
@ -167,6 +169,7 @@ namespace youtube_downloader.Server.Models
} }
catch (Exception ex) catch (Exception ex)
{ {
Console.WriteLine(ex.Message);
_ = ex; _ = ex;
} }
@ -175,11 +178,15 @@ namespace youtube_downloader.Server.Models
} }
catch (Exception ex) catch (Exception ex)
{ {
Console.WriteLine(ex.Message);
_ = ex; _ = ex;
} }
} }
catch (Exception ex2) catch (Exception ex2)
{ {
Console.WriteLine(ex2.Message);
_ = ex2; _ = ex2;
} }
return video.ToArray(); return video.ToArray();
@ -220,6 +227,8 @@ namespace youtube_downloader.Server.Models
} }
catch (Exception ex) catch (Exception ex)
{ {
Console.WriteLine(ex.Message);
_ = ex; _ = ex;
} }
@ -228,11 +237,15 @@ namespace youtube_downloader.Server.Models
} }
catch (Exception ex) catch (Exception ex)
{ {
Console.WriteLine(ex.Message);
_ = ex; _ = ex;
} }
} }
catch (Exception ex2) catch (Exception ex2)
{ {
Console.WriteLine(ex2.Message);
_ = ex2; _ = ex2;
} }
return video.ToArray(); return video.ToArray();

View File

@ -37,10 +37,14 @@ namespace TessesYoutubeDownloader.Server.Models
}); });
}catch(Exception ex) }catch(Exception ex)
{ {
Console.WriteLine(ex.Message);
_ = ex; _ = ex;
} }
}catch(Exception ex2) }catch(Exception ex2)
{ {
Console.WriteLine(ex2.Message);
_ = ex2; _ = ex2;
} }
return pl2; return pl2;

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.