Reputation: 49
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
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