namespace OAuthConsumer { using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web; using DotNetOpenAuth.Logging; /// /// 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 ILog Logger = LogProvider.GetLogger("DotNetOpenAuth.OAuthConsumer"); } }