-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
37 lines (34 loc) · 1.1 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
using NLog;
using NLog.Config;
using NLog.Targets;
using System;
using System.Windows.Forms;
namespace FlightPlanManager
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main()
{
var config = new LoggingConfiguration();
var logfile = new FileTarget("logfile")
{
FileName = "current.log",
ArchiveFileName = "archive.{#}.log",
ArchiveEvery = FileArchivePeriod.Month,
ArchiveNumbering = ArchiveNumberingMode.Rolling,
MaxArchiveFiles = 1,
AutoFlush = true,
Layout = "${longdate} ${message} ${exception:format=tostring}"
};
config.AddRule(LogLevel.Info, LogLevel.Fatal, logfile);
LogManager.Configuration = config;
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Forms.MainForm());
}
}
}