-
Notifications
You must be signed in to change notification settings - Fork 0
/
Logging.cs
27 lines (26 loc) · 893 Bytes
/
Logging.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Oracle.ManagedDataAccess.Client;
namespace Utils
{
class Logging
{
public static void Info(string caller, string message)
{
DateTime now = DateTime.Now;
string timeString = now.ToString("MM/dd/yyyy hh:mm:ss.fff tt");
Console.WriteLine("[Info] " + "[" + timeString + "] " + caller + ": " + message);
}
public static void Warning(string caller, string message)
{
DateTime now = DateTime.Now;
string timeString = now.ToString("MM/dd/yyyy hh:mm:ss.fff tt");
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("[Warning]" + "[" + timeString + "] " + caller + ": " + message);
Console.ResetColor();
}
}
}