feat(wip): list rooms

This commit is contained in:
2024-04-13 17:43:23 +03:00
parent d82964526c
commit c4811ef052
8 changed files with 55 additions and 32 deletions
@@ -0,0 +1,17 @@
namespace Ragon.Server.Logging
{
public class LoggerManager
{
private static IRagonLoggerFactory _factory;
public static void SetLoggerFactory(IRagonLoggerFactory loggerFactory)
{
_factory = loggerFactory;
}
public static IRagonLogger GetLogger(string tag)
{
return _factory.GetLogger(tag);
}
}
}