缩短告警信息里面的时间显示
大石头 authored at 2022-02-23 22:24:23
422.00 B
Stardust
using System;
using NewLife.Log;

namespace StarGateway
{
    class Program
    {
        public static void Main(String[] args)
        {
            XTrace.UseConsole();

#if DEBUG
            //DefaultTracer.Instance = new DefaultTracer { Log = XTrace.Log };
#endif

            var host = new Host();
            host.Add<InitService>();
            host.Add<MyService>();

            host.Run();
        }
    }
}