Remove --verbose flag from OD compiler invocation

This commit is contained in:
Jordan Dominion
2023-10-14 23:30:57 -04:00
parent 0f038977eb
commit 692c2f60a6
@@ -89,6 +89,6 @@ namespace Tgstation.Server.Host.Components.Engine
/// <inheritdoc />
public string FormatCompilerArguments(string dmePath)
=> $"--suppress-unimplemented --verbose --notices-enabled {dmePath ?? throw new ArgumentNullException(nameof(dmePath))}";
=> $"--suppress-unimplemented --notices-enabled {dmePath ?? throw new ArgumentNullException(nameof(dmePath))}";
}
}