Method to create logger without provider

This commit is contained in:
amevarashi 2022-04-26 10:51:31 +05:00
parent a7a0d3f6cf
commit eb353c6022

View file

@ -103,5 +103,9 @@ namespace RJWSexperience.Logs
{
return new Logger(staticTypeName, new TLogProvider());
}
public static ILog GetLogger(string staticTypeName)
{
return new Logger(staticTypeName);
}
}
}