runasync -> runandblockasync, runasync is not blocking now (unused)
This commit is contained in:
parent
b5fa858cbf
commit
0943a44c28
@ -49,7 +49,7 @@ namespace NadekoBot
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task RunAsync(string[] args)
|
public async Task RunAsync(params string[] args)
|
||||||
{
|
{
|
||||||
SetupLogger();
|
SetupLogger();
|
||||||
_log = LogManager.GetCurrentClassLogger();
|
_log = LogManager.GetCurrentClassLogger();
|
||||||
@ -111,8 +111,12 @@ namespace NadekoBot
|
|||||||
#endif
|
#endif
|
||||||
Ready = true;
|
Ready = true;
|
||||||
Console.WriteLine(await Stats.Print().ConfigureAwait(false));
|
Console.WriteLine(await Stats.Print().ConfigureAwait(false));
|
||||||
|
}
|
||||||
|
|
||||||
await Task.Delay(-1);
|
public async Task RunAndBlockAsync(params string[] args)
|
||||||
|
{
|
||||||
|
await RunAsync(args).ConfigureAwait(false);
|
||||||
|
await Task.Delay(-1).ConfigureAwait(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetupLogger()
|
private void SetupLogger()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user