Makes YAML linter not blow up once warnings or errors are logged.
This commit is contained in:
parent
2fac6b1089
commit
ca0aa1a8d5
|
|
@ -44,7 +44,10 @@ namespace Content.YAMLLinter
|
|||
|
||||
private async Task<Dictionary<string, HashSet<ErrorNode>>> ValidateClient()
|
||||
{
|
||||
var client = StartClient();
|
||||
var client = StartClient(new ClientContentIntegrationOption()
|
||||
{
|
||||
FailureLogLevel = null,
|
||||
});
|
||||
|
||||
await client.WaitIdleAsync();
|
||||
|
||||
|
|
@ -63,7 +66,10 @@ namespace Content.YAMLLinter
|
|||
|
||||
private async Task<Dictionary<string, HashSet<ErrorNode>>> ValidateServer()
|
||||
{
|
||||
var server = StartServer();
|
||||
var server = StartServer(new ServerContentIntegrationOption()
|
||||
{
|
||||
FailureLogLevel = null,
|
||||
});
|
||||
|
||||
await server.WaitIdleAsync();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue