コード例 #1
0
ファイル: Logger.cs プロジェクト: IceLitty/TheDivision2Vendor
        public static void Put(LogPopType popup, LogType type, string msg, Exception e)
        {
            var l = new Log
            {
                dt    = DateTime.Now,
                type  = type,
                msg   = msg,
                e     = e,
                popup = popup
            };

            logs.Enqueue(l);
        }
コード例 #2
0
ファイル: Logger.cs プロジェクト: IceLitty/TheDivision2Vendor
 public static void Put(LogPopType popup, LogType type, string msg)
 {
     Put(popup, type, msg, null);
 }