diff --git a/ILSpy/LoadedAssembly.cs b/ILSpy/LoadedAssembly.cs index a3bf96f4c..09cdd1adb 100644 --- a/ILSpy/LoadedAssembly.cs +++ b/ILSpy/LoadedAssembly.cs @@ -83,7 +83,8 @@ namespace ICSharpCode.ILSpy try { var module = await assemblyTask; return module != null ? module.Assembly : null; - } catch { + } catch (Exception ex) { + System.Diagnostics.Trace.TraceError(ex.ToString()); return null; } }