diff --git a/de4dot.code/FilesDeobfuscator.cs b/de4dot.code/FilesDeobfuscator.cs index c7380d63..acea5362 100644 --- a/de4dot.code/FilesDeobfuscator.cs +++ b/de4dot.code/FilesDeobfuscator.cs @@ -168,11 +168,11 @@ namespace de4dot { return; // Not a .NET file } catch (NullReferenceException) { - Log.w("Could not load file: {0}", file.Filename); + Log.w("Could not load file (null ref): {0}", file.Filename); return; } catch (IOException) { - Log.w("Could not load file: {0}", file.Filename); + Log.w("Could not load file (io exception): {0}", file.Filename); return; }