From 8b059bcea79da5bfa1bf41a8b4e63ecab50c32da Mon Sep 17 00:00:00 2001 From: de4dot Date: Sat, 18 Feb 2012 07:52:58 +0100 Subject: [PATCH] These messages should be warnings --- de4dot.code/MethodReturnValueInliner.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/de4dot.code/MethodReturnValueInliner.cs b/de4dot.code/MethodReturnValueInliner.cs index c9265696..5187800b 100644 --- a/de4dot.code/MethodReturnValueInliner.cs +++ b/de4dot.code/MethodReturnValueInliner.cs @@ -271,7 +271,7 @@ namespace de4dot.code { // We're here if there were no cflow deobfuscation, or if there are two or // more blocks branching to the decrypter method, or the two blocks can't be // merged because one is outside the exception handler (eg. buggy obfuscator). - Log.v("Could not find all arguments to method {0} ({1:X8})", + Log.w("Could not find all arguments to method {0} ({1:X8})", Utils.removeNewlines(method), method.MetadataToken.ToInt32()); return false; @@ -319,7 +319,7 @@ namespace de4dot.code { break; default: - Log.v("Could not find all arguments to method {0} ({1:X8}), instr: {2}", + Log.w("Could not find all arguments to method {0} ({1:X8}), instr: {2}", Utils.removeNewlines(method), method.MetadataToken.ToInt32(), instr);