Ejemplo n.º 1
0
        public static void Main(string[] args)
        {
            var configuration = new ConfigurationBuilder()
                                .AddJsonFile("config.json")
                                .AddEnvironmentVariables()
                                .AddCommandLine(args)
                                .Build();

            XYH.Core.Log.LogLevels logLevel = XYH.Core.Log.LogLevels.Info;
            int    maxDays     = 7;
            var    logConfig   = configuration.GetSection("Log");
            string maxFileSize = "10MB";

            if (logConfig != null)
            {
                Enum.TryParse <XYH.Core.Log.LogLevels>(logConfig["Level"] ?? "", out logLevel);
                int.TryParse(logConfig["SaveDays"], out maxDays);
                maxFileSize = logConfig["MaxFileSize"];
                if (string.IsNullOrEmpty(maxFileSize))
                {
                    maxFileSize = "10MB";
                }
            }

            string logFolder = System.IO.Path.Combine(AppContext.BaseDirectory, "Logs");

            XYH.Core.Log.LoggerManager.InitLogger(new XYH.Core.Log.LogConfig()
            {
                LogBaseDir         = logFolder,
                MaxFileSize        = maxFileSize,
                LogLevels          = logLevel,
                IsAsync            = true,
                LogFileTemplate    = XYH.Core.Log.LogFileTemplates.PerDayDirAndLogger,
                LogContentTemplate = XYH.Core.Log.LogLayoutTemplates.SimpleLayout,
            });
            LoggerManager.SetLoggerAboveLevels(logLevel);
            LoggerManager.StartClear(maxDays, logFolder, XYH.Core.Log.LoggerManager.GetLogger("clear"));

            ExceptionLogger = XYH.Core.Log.LoggerManager.GetLogger("Exception");
            CrashLogger     = XYH.Core.Log.LoggerManager.GetLogger("Crash");

            //全局异常日志
            AppDomain.CurrentDomain.UnhandledException   += CurrentDomain_UnhandledException;
            AppDomain.CurrentDomain.FirstChanceException += CurrentDomain_FirstChanceException;

            var host = WebHost.CreateDefaultBuilder(args)
                       .UseStartup <Startup>()
                       .UseUrls($"http://*:{configuration["Port"]}")
                       .Build();

            host.Run();
        }
Ejemplo n.º 2
0
        public static IWebHost BuildWebHost(string[] args)
        {
            var configuration = new ConfigurationBuilder()
                                .AddJsonFile("appsettings.json")
                                .Build();

            XYH.Core.Log.LogLevels logLevel = XYH.Core.Log.LogLevels.Info;
            int    maxDays     = 7;
            var    logConfig   = configuration.GetSection("Log");
            string maxFileSize = "10MB";

            if (logConfig != null)
            {
                Enum.TryParse <XYH.Core.Log.LogLevels>(logConfig["Level"] ?? "", out logLevel);
                int.TryParse(logConfig["SaveDays"], out maxDays);
                maxFileSize = logConfig["MaxFileSize"];
                if (string.IsNullOrEmpty(maxFileSize))
                {
                    maxFileSize = "10MB";
                }
            }

            string logFolder = System.IO.Path.Combine(AppContext.BaseDirectory, "Logs");

            XYH.Core.Log.LoggerManager.InitLogger(new XYH.Core.Log.LogConfig()
            {
                LogBaseDir         = logFolder,
                MaxFileSize        = maxFileSize,
                LogLevels          = logLevel,
                IsAsync            = true,
                LogFileTemplate    = XYH.Core.Log.LogFileTemplates.PerDayDirAndLogger,
                LogContentTemplate = XYH.Core.Log.LogLayoutTemplates.SimpleLayout,
            });
            LoggerManager.SetLoggerAboveLevels(logLevel);
            LoggerManager.StartClear(maxDays, logFolder, XYH.Core.Log.LoggerManager.GetLogger("clear"));


            return(WebHost.CreateDefaultBuilder(args)
                   .UseUrls($"http://*:{configuration["Port"]}")
                   .UseStartup <Startup>()
                   .Build());
        }