I want to use the NLog component as my log provider.How can I achieve it? @ReubenBond Thx
install NLog.Extensions.Logging
and
ISiloHostBuilder builder = new SiloHostBuilder();
builder.ConfigureLogging(configureLogging => { configureLogging.AddNLog(); });
yes you can , and please see #3641, I have a code sample there on how.
thx all
Most helpful comment
install
NLog.Extensions.Loggingand