using System; namespace Quadarax.Foundation.Core.Logging { public interface IQLogger { IQLog GetLogger(string loggerName); IQLog GetLogger(Type loggerForType); } }