4 lines
111 B
C#
4 lines
111 B
C#
|
public interface IBadLogger
|
||
|
{
|
||
|
void Log(string message, LogType logType, LogTarget target, Exception? ex);
|
||
|
}
|