design-patterns/Facade/IBadLogger.cs

4 lines
111 B
C#
Raw Normal View History

2023-09-07 12:41:04 +00:00
public interface IBadLogger
{
void Log(string message, LogType logType, LogTarget target, Exception? ex);
}