BoxInformation.Logging.TextFileLogger.Log C# (CSharp) 메소드

Log() 공개 메소드

public Log ( string message ) : void
message string
리턴 void
        public void Log(string message)
        {
            using (StreamWriter logWriter = new StreamWriter(logPath))
            {
                logWriter.AutoFlush = true;
                logWriter.WriteLine(message);
            }
        }
TextFileLogger