AcStarter.Program.Log C# (CSharp) Méthode

Log() private static méthode

private static Log ( string message ) : void
message string
Résultat 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
        }