Mahesh Talreja
Mahesh Talreja

Reputation: 49

How to configure NLog file-based logging in app.config file

Can we configure NLog file-based logging in app.config file ? Following link https://apacheignite-net.readme.io/docs/logging has an programed way of doing it in c#, but no example of completely configuring it in app.config file!

Upvotes: 0

Views: 155

Answers (1)

alamar
alamar

Reputation: 19343

There's a tab named "app.config" there in the docs section that shows the following example:

<igniteConfiguration>
  <logger type="Apache.Ignite.NLog.IgniteNLogLogger, Apache.Ignite.NLog" />
</igniteConfiguration>

Upvotes: 3

Related Questions