LogWriter.cs 251 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 using log4net; namespace OS.Spin.Common { public class LogWriter { private static ILog _log = LogManager.GetLogger("log"); public static void WriterInfo(string msg) { _log.Debug(msg); } } }