blob: 64ecebc38aeae81337a87f03dc8f769e25218c46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System.Text;
/// <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 log4net.ILog Logger = log4net.LogManager.GetLogger("DotNetOpenAuth.InfoCardRelyingParty");
}
|