artiso-solutions / CoVoX

MIT License
1 stars 1 forks source link

Provide default logger implementation in simplified constructor #47

Closed tommasobertoni closed 3 years ago

tommasobertoni commented 3 years ago

Provide a simplified CovoxEngine constructor that auto-creates a trace-writing ILogger.

public CovoxEngine(...)
    : this(new DefaultLogger(), ...)
{
}

public CovoxEngine(ILogger<CovoxEngine> logger, ...)

Look for existing implementations of this.