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

18 lines
351 B
C#

/*using System;
namespace TeamHobby.HobbyProjectGenerator.Logging
{
public class FileLogger : ILogger
{
public IList<string> GetAllLogs()
{
throw new NotImplementedException();
}
public bool Log(string description)
{
throw new NotImplementedException();
}
}
}*/