aswi2022bug-thugs-gitlab/ld_client/LDClient/Program.cs @ 3c82c2ad
1 |
using LDClient.utils; |
---|---|
2 |
using LDClient.utils.loggers; |
3 |
|
4 |
namespace LDClient; |
5 |
|
6 |
internal class Program { |
7 |
|
8 |
public static ConfigLoader Config { get; set; } = null!; |
9 |
|
10 |
// Main Method
|
11 |
public static void Main() { |
12 |
Config = new ConfigLoader(); |
13 |
|
14 |
while (true) { |
15 |
ALogger.Current.Info("Ok"); |
16 |
ALogger.Current.Debug("Debug"); |
17 |
ALogger.Current.Error("Error"); |
18 |
}
|
19 |
}
|
20 |
}
|