Updated log text

This commit is contained in:
de4dot 2011-09-29 10:50:10 +02:00
parent 46d4457ead
commit 18756f90bf

View File

@ -168,11 +168,11 @@ namespace de4dot {
return; // Not a .NET file return; // Not a .NET file
} }
catch (NullReferenceException) { catch (NullReferenceException) {
Log.w("Could not load file: {0}", file.Filename); Log.w("Could not load file (null ref): {0}", file.Filename);
return; return;
} }
catch (IOException) { catch (IOException) {
Log.w("Could not load file: {0}", file.Filename); Log.w("Could not load file (io exception): {0}", file.Filename);
return; return;
} }