From 734fef0a911e05fec2cabf6fc849240fc9480937 Mon Sep 17 00:00:00 2001 From: Zoltan Varga Date: Thu, 27 Jan 2011 11:49:27 +0100 Subject: [PATCH] Improve an AOT error message. --- mono/mini/aot-runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mono/mini/aot-runtime.c b/mono/mini/aot-runtime.c index 207bfc7557b..2cf30212369 100644 --- a/mono/mini/aot-runtime.c +++ b/mono/mini/aot-runtime.c @@ -211,7 +211,7 @@ load_image (MonoAotModule *amodule, int index, gboolean set_error) } if (strcmp (assembly->image->guid, amodule->image_guids [index])) { - mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT module %s is out of date (Older than dependency %s).\n", amodule->aot_name, amodule->image_names [index].name); + mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT module %s is unusable (GUID of dependent assembly %s doesn't match (expected '%s', got '%s').\n", amodule->aot_name, amodule->image_names [index].name, amodule->image_guids [index], assembly->image->guid); amodule->out_of_date = TRUE; return NULL; } -- 2.25.1