diff options
Diffstat (limited to 'samples/Consumer/App_Code/Logging.cs')
-rw-r--r-- | samples/Consumer/App_Code/Logging.cs | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/samples/Consumer/App_Code/Logging.cs b/samples/Consumer/App_Code/Logging.cs index cba9b4e..e97ff37 100644 --- a/samples/Consumer/App_Code/Logging.cs +++ b/samples/Consumer/App_Code/Logging.cs @@ -1,20 +1,20 @@ -using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Web;
-
-/// <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("DotNetOAuth.ConsumerSample");
-}
+using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Web; + +/// <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.ConsumerSample"); +} |