-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLogger.cs
More file actions
36 lines (30 loc) · 718 Bytes
/
Copy pathLogger.cs
File metadata and controls
36 lines (30 loc) · 718 Bytes
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
using log4net;
using log4net.Config;
namespace OnlineStore;
public class Logger
{
private static readonly ILog Log = LogManager.GetLogger(typeof(Logger));
static Logger()
{
try
{
XmlConfigurator.Configure(new FileInfo("log4net.config"));
}
catch (Exception ex)
{
Console.WriteLine("Error configuring log4net: " + ex.Message);
}
}
public static void LogError(string message, Exception ex)
{
Log.Error(message, ex);
}
public static void LogInfo(string message)
{
Log.Info(message);
}
public static void LogWarning(string message)
{
Log.Warn(message);
}
}