Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnkit Jain <radical@gmail.com>2022-07-01 06:26:47 +0300
committerGitHub <noreply@github.com>2022-07-01 06:26:47 +0300
commit75ca428b6026ebb56ac354af88f92db5b3fdeb7c (patch)
treefa252f48828469a5e10406553fd35313e6db1c61 /src/mono/wasm/runtime
parent7f18fd5960945bd2e2dd656b61239dcde47b306b (diff)
[wasm] Clean up debugger tests output (#71483)
Diffstat (limited to 'src/mono/wasm/runtime')
-rw-r--r--src/mono/wasm/runtime/startup.ts18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mono/wasm/runtime/startup.ts b/src/mono/wasm/runtime/startup.ts
index fe75e1f446b..fb0b8d9e874 100644
--- a/src/mono/wasm/runtime/startup.ts
+++ b/src/mono/wasm/runtime/startup.ts
@@ -213,7 +213,7 @@ function _handle_fetched_asset(asset: AssetEntry, url?: string) {
const bytes = new Uint8Array(asset.buffer);
if (ctx.tracing)
- console.log(`MONO_WASM: Loaded:${asset.name} as ${asset.behavior} size ${bytes.length} from ${url}`);
+ console.trace(`MONO_WASM: Loaded:${asset.name} as ${asset.behavior} size ${bytes.length} from ${url}`);
const virtualName: string = typeof (asset.virtual_path) === "string"
? asset.virtual_path
@@ -244,7 +244,7 @@ function _handle_fetched_asset(asset: AssetEntry, url?: string) {
fileName = fileName.substr(1);
if (parentDirectory) {
if (ctx.tracing)
- console.log(`MONO_WASM: Creating directory '${parentDirectory}'`);
+ console.trace(`MONO_WASM: Creating directory '${parentDirectory}'`);
Module.FS_createPath(
"/", parentDirectory, true, true // fixme: should canWrite be false?
@@ -254,7 +254,7 @@ function _handle_fetched_asset(asset: AssetEntry, url?: string) {
}
if (ctx.tracing)
- console.log(`MONO_WASM: Creating file '${fileName}' in directory '${parentDirectory}'`);
+ console.trace(`MONO_WASM: Creating file '${fileName}' in directory '${parentDirectory}'`);
if (!mono_wasm_load_data_archive(bytes, parentDirectory)) {
Module.FS_createDataFile(
@@ -498,7 +498,7 @@ async function mono_download_assets(config: MonoConfig | MonoConfigError | undef
++parallel_count;
if (parallel_count == max_parallel_downloads) {
if (ctx!.tracing)
- console.log("MONO_WASM: Throttling further parallel downloads");
+ console.trace("MONO_WASM: Throttling further parallel downloads");
throttling_promise = new Promise((resolve) => {
throttling_promise_resolve = resolve;
@@ -537,10 +537,10 @@ async function mono_download_assets(config: MonoConfig | MonoConfigError | undef
}
if (asset.name === attemptUrl) {
if (ctx!.tracing)
- console.log(`MONO_WASM: Attempting to fetch '${attemptUrl}'`);
+ console.trace(`MONO_WASM: Attempting to fetch '${attemptUrl}'`);
} else {
if (ctx!.tracing)
- console.log(`MONO_WASM: Attempting to fetch '${attemptUrl}' for ${asset.name}`);
+ console.trace(`MONO_WASM: Attempting to fetch '${attemptUrl}' for ${asset.name}`);
}
try {
const response = await runtimeHelpers.fetch(attemptUrl);
@@ -567,7 +567,7 @@ async function mono_download_assets(config: MonoConfig | MonoConfigError | undef
--parallel_count;
if (throttling_promise && parallel_count == ((max_parallel_downloads / 2) | 0)) {
if (ctx!.tracing)
- console.log("MONO_WASM: Resuming more parallel downloads");
+ console.trace("MONO_WASM: Resuming more parallel downloads");
throttling_promise_resolve!();
throttling_promise = undefined;
}
@@ -611,8 +611,8 @@ function finalize_assets(config: MonoConfig | MonoConfigError | undefined): void
ctx.loaded_files.forEach(value => MONO.loaded_files.push(value.url));
if (ctx.tracing) {
- console.log("MONO_WASM: loaded_assets: " + JSON.stringify(ctx.loaded_assets));
- console.log("MONO_WASM: loaded_files: " + JSON.stringify(ctx.loaded_files));
+ console.trace("MONO_WASM: loaded_assets: " + JSON.stringify(ctx.loaded_assets));
+ console.trace("MONO_WASM: loaded_files: " + JSON.stringify(ctx.loaded_files));
}
} catch (err: any) {
Module.printErr("MONO_WASM: Error in finalize_assets: " + err);