summaryrefslogtreecommitdiffstats
path: root/samples/OAuthConsumer/Code/Logging.cs
blob: dcd281332f1c201c72a89c4c419d66a631b8e850 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace OAuthConsumer {
	using System;
	using System.Collections.Generic;
	using System.Linq;
	using System.Text;
	using System.Web;

	using DotNetOpenAuth.Logging;

    /// <summary>
	/// Logging tools for this sample.
	/// </summary>
	public static class Logging {
		/// <summary>
		/// An application memory cache of recent log messages.
		/// </summary>
		public static StringBuilder LogMessages = new StringBuilder();

		/// <summary>
		/// The logger for this sample to use.
		/// </summary>
		public static ILog Logger = LogProvider.GetLogger("DotNetOpenAuth.OAuthConsumer");
	}
}