/*using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TeamHobby.HobbyProjectGenerator.Logging { public class ConsoleLogger : ILogger { public IList GetAllLogs() { throw new NotImplementedException(); } public bool Log(string description) { throw new NotImplementedException(); } } } */