8 lines
No EOL
176 B
C#
8 lines
No EOL
176 B
C#
public interface ILogger
|
|
{
|
|
void Information(string message);
|
|
|
|
void Error(string message, Exception? ex = null);
|
|
|
|
void Fatal(string message, Exception? ex = null);
|
|
} |