mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fix typo in InitializeLogging
This commit is contained in:
parent
8e39f9f4eb
commit
367ee1a3aa
@ -30,7 +30,7 @@ namespace Wabbajack.Common
|
||||
private static readonly Subject<IStatusMessage> LoggerSubj = new Subject<IStatusMessage>();
|
||||
public static IObservable<IStatusMessage> LogMessages => LoggerSubj;
|
||||
|
||||
public static async Task InitalizeLogging()
|
||||
public static async Task InitializeLogging()
|
||||
{
|
||||
_startTime = DateTime.Now;
|
||||
|
||||
|
@ -38,7 +38,7 @@ namespace Wabbajack.Common
|
||||
|
||||
static Utils()
|
||||
{
|
||||
InitalizeLogging().Wait();
|
||||
InitializeLogging().Wait();
|
||||
}
|
||||
|
||||
private static readonly string[] Suffix = {"B", "KB", "MB", "GB", "TB", "PB", "EB"}; // Longs run out around EB
|
||||
|
@ -16,7 +16,7 @@ namespace Wabbajack
|
||||
Consts.LogsFolder.CreateDirectory();
|
||||
|
||||
LoggingSettings.LogToFile = true;
|
||||
Utils.InitalizeLogging().Wait();
|
||||
Utils.InitializeLogging().Wait();
|
||||
|
||||
CLIOld.ParseOptions(Environment.GetCommandLineArgs());
|
||||
if (CLIArguments.Help)
|
||||
|
Loading…
Reference in New Issue
Block a user