Skip to content

Commit 87dc10e

Browse files
authored
[wasm][host] Track change in forwardConsole parameter to forwardConsoleToWS (#75372)
1 parent ffc96c4 commit 87dc10e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/mono/wasm/host/BrowserHost.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private async Task RunAsync(ILoggerFactory loggerFactory, CancellationToken toke
6767
var runArgsJson = new RunArgumentsJson(applicationArguments: _args.AppArgs,
6868
runtimeArguments: _args.CommonConfig.RuntimeArguments,
6969
environmentVariables: envVars,
70-
forwardConsole: _args.ForwardConsoleOutput ?? false,
70+
forwardConsoleToWS: _args.ForwardConsoleOutput ?? false,
7171
debugging: _args.CommonConfig.Debugging);
7272
runArgsJson.Save(Path.Combine(_args.CommonConfig.AppPath, "runArgs.json"));
7373

src/mono/wasm/host/RunArgumentsJson.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ internal sealed record RunArgumentsJson(
1414
string[] applicationArguments,
1515
string[]? runtimeArguments = null,
1616
IDictionary<string, string>? environmentVariables = null,
17-
bool forwardConsole = false,
17+
bool forwardConsoleToWS = false,
1818
bool debugging = false
1919
)
2020
{

0 commit comments

Comments
 (0)