Fixed exception throwing stuff idunno

This commit is contained in:
Jeddunk 2021-02-15 16:51:50 +01:00
parent 0005f3d74b
commit 23459ec794
3 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net.Http;
@ -211,7 +212,7 @@ namespace auto_creamapi.Services
catch (Exception e)
{
MyLogger.Log.Error("Could not get DLC!");
Console.WriteLine(e);
MyLogger.Log.Debug(e.Demystify(), "Exception thrown!");
}
return dlcList;