ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.Logging/LoggingConstants.cs
(Generate patch)

Comparing:
trunk/RomCheater/AppConsts.cs (file contents), Revision 21 by william, Wed May 9 08:42:07 2012 UTC vs.
trunk/RomCheater.Logging/LoggingConstants.cs (file contents), Revision 23 by william, Wed May 9 08:51:38 2012 UTC

--- trunk/RomCheater/AppConsts.cs	2012/05/09 08:42:07	21
+++ trunk/RomCheater.Logging/LoggingConstants.cs	2012/05/09 08:51:38	23
@@ -7,11 +7,11 @@ using RomCheater.Logging;
 
 namespace RomCheater
 {
-    public static class AppConsts
+    public static class LoggingConstants
     {
         #region Application Constants
         public const string AppName = "Rom Cheater";
-        public const string AppLogFile = RomCheater.Logging.LogWriter.LOG_FILE;
+        public const string AppLogFile = "RomCheater.log";
         public static string AppVersion = Assembly.GetEntryAssembly().GetName().Version.ToString();
 #if DEBUG
         public const string AppBuild = "Debug";
@@ -19,13 +19,5 @@ namespace RomCheater
         public const string AppBuild = "Release";
 #endif
         #endregion
-
-        #region Logging Constants
-        public static void LogApplicationStatup()
-        {
-            logger.WriteLine("{0} created on {1}", AppLogFile, DateTime.Now.ToString());
-            logger.WriteLine("{0} version: {1} {2} build", AppName, AppVersion, AppBuild);
-        }
-        #endregion
     }
 }