HobbyProject/Source Code/TeamHobby.HobbyProjectGenerator.Logging/Implementations/ConsoleLogger.cs

22 lines
456 B
C#

/*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<string> GetAllLogs()
{
throw new NotImplementedException();
}
public bool Log(string description)
{
throw new NotImplementedException();
}
}
}
*/