AcStarter.Program.Log C# (CSharp) Method

Log() private static method

private static Log ( string message ) : void
message string
return void
        private static void Log(string message) {
#if LOGGING
            var logFile = Assembly.GetEntryAssembly().Location + "_cm.log";

            using (var writer = new StreamWriter(logFile, true)) {
                writer.WriteLine(Time(message));
            }
#endif
        }