Quantcast
Channel: The Oszakiewski Family » Eric
Viewing all articles
Browse latest Browse all 23

Writing to the ULS in SharePoint 2010

$
0
0

Here’s a quick, easy, 3 step method to log your custom events to the ULS while writing a SharePoint 2010 solution:

  1. Add a reference to Microsoft.Office.Server (located in C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\ISAPI on your SharePoint server)
  2. Add a using statement at the top of your code like so:
    using Microsoft.Office.Server.Diagnostics;
  3. Add the following line wherever you want the message to appear in the ULS
    PortalLog.LogString(<whatever you want to put in the ULS>)

See? That wasn’t so bad!


Viewing all articles
Browse latest Browse all 23

Trending Articles