Skip to content

Commit

Permalink
Report bundle tracing using the filename, not the full path.
Browse files Browse the repository at this point in the history
  • Loading branch information
rolfbjarne committed Apr 11, 2014
1 parent fb069fc commit cc71625
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions mono/metadata/assembly.c
Expand Up @@ -1471,12 +1471,13 @@ mono_assembly_open_from_bundle (const char *filename, MonoImageOpenStatus *statu
}
}
mono_assemblies_unlock ();
g_free (name);
if (image) {
mono_image_addref (image);
mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Assembly Loader loaded assembly from bundle: '%s'.", filename);
mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_ASSEMBLY, "Assembly Loader loaded assembly from bundle: '%s'.", name);
g_free (name);
return image;
}
g_free (name);
return NULL;
}

Expand Down

0 comments on commit cc71625

Please sign in to comment.