-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
53 lines (50 loc) · 1.6 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using System;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Serilog;
namespace PreBuiltConfigExample.Logging.Loud
{
public class Program
{
public static void Main(string[] args)
{
var builtConfig = new ConfigurationBuilder()
.AddJsonFile("appsettings.json")
.AddCommandLine(args)
.Build();
Log.Logger = new LoggerConfiguration()
.WriteTo.Console()
.WriteTo.File(builtConfig["Logging:FilePath"])
.CreateLogger();
try
{
new HostBuilder()
.ConfigureAppConfiguration(config =>
{
config.AddConfiguration(builtConfig);
})
.ConfigureLogging(logging =>
{
logging.AddSerilog();
})
.ConfigureServices(_ =>
{
// Throw an example exception
// In reality this could be any exception from anywhere within Host.Build()
// Exception will be logged with Serilog
throw new ApplicationException("Oh no, it broke!");
})
.Build()
.Run();
}
catch (Exception ex)
{
Log.Fatal(ex, "Host blew up!");
}
finally
{
Log.CloseAndFlush();
}
}
}
}