Forum Discussion

Jouni Poikolainen's avatar
Jouni Poikolainen
Copper Contributor
Jan 30, 2017
Solved

OfficeDevPnP.Core Logging

Hi,   We are using OfficeDevPnP.Core as reference in out project and would like to have possible loggings forwarded into our own logger. Does anyone know is that possible?   For example, lets ass...
  • Luis Mañez's avatar
    Jan 31, 2017
    PnP Core uses default .NET Trace class for Logging. That means that you can configure as you usually do when uses Diagnostics.Trace. For instance, if you have a console App using PnPCore, you can add the following to your App.Config file, and any Log do by PnPCore, will be shown in your console:

    <system.diagnostics>
    <trace autoflush="true" indentsize="4">
    <listeners>
    <add name="configConsoleListener" type="System.Diagnostics.ConsoleTraceListener" />
    </listeners>
    </trace>
    </system.diagnostics>

Resources