diff --git a/CSharpTranslator/antlr3/src/cs2j/CLR/cs2j.cs b/CSharpTranslator/antlr3/src/cs2j/CLR/cs2j.cs index d4d9221..23ffaa4 100644 --- a/CSharpTranslator/antlr3/src/cs2j/CLR/cs2j.cs +++ b/CSharpTranslator/antlr3/src/cs2j/CLR/cs2j.cs @@ -235,6 +235,7 @@ namespace RusticiSoftware.Translator.CSharp // Here's where we do the real work... public static void addAppSigTranslation(string fullName) { + if (cfg.DebugLevel > 3) Console.Out.WriteLine("Extracting type info from file {0}", fullName); ITreeNodeStream csTree = parseFile(fullName); if (csTree != null) { @@ -250,6 +251,7 @@ namespace RusticiSoftware.Translator.CSharp // Here's where we do the real work... public static void translateFile(string fullName) { + if (cfg.DebugLevel > 3) Console.Out.WriteLine("Translating file {0}", fullName); CommonTreeNodeStream csTree = parseFile(fullName); if (cfg.DumpCSharp) AntlrUtils.AntlrUtils.DumpNodes(csTree);