Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Last active March 24, 2020 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wullemsb/fe23400cdf1993cb74b33ab36d429b0f to your computer and use it in GitHub Desktop.
Save wullemsb/fe23400cdf1993cb74b33ab36d429b0f to your computer and use it in GitHub Desktop.
public class ConsoleLogger: ILogger
{
public Task LogInformation(string message)
{
Console.WriteLine(message);
}
}
public interface ILogger
{
Task LogInformation(string message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment