Added Consumer WPF and ASP.NET WebForms samples.
[dotnetoauth.git] / samples / Consumer / App_Code / Logging.cs
blobcba9b4e1dd2030391280b335c6850f5db7cfab7b
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Web;
7 /// <summary>
8 /// Logging tools for this sample.
9 /// </summary>
10 public static class Logging {
11 /// <summary>
12 /// An application memory cache of recent log messages.
13 /// </summary>
14 public static StringBuilder LogMessages = new StringBuilder();
16 /// <summary>
17 /// The logger for this sample to use.
18 /// </summary>
19 public static log4net.ILog Logger = log4net.LogManager.GetLogger("DotNetOAuth.ConsumerSample");