namespace OAuthClient { using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; /// /// Logging tools for this sample. /// public static class Logging { /// /// An application memory cache of recent log messages. /// public static StringBuilder LogMessages = new StringBuilder(); /// /// The logger for this sample to use. /// public static log4net.ILog Logger = log4net.LogManager.GetLogger("DotNetOpenAuth.OAuthClient"); } }