Don't output full compiler FQ name on -printArgs

This commit is contained in:
Alexander Udalov
2014-06-23 10:16:12 +04:00
parent f51e172570
commit 2144088627
5 changed files with 5 additions and 5 deletions
@@ -200,7 +200,7 @@ public abstract class CLICompiler<A extends CommonCompilerArguments> {
String argumentsAsString = StringUtil.join(argumentsAsList, " ");
String printArgsMessage = messageRenderer.render(CompilerMessageSeverity.INFO,
"Invoking compiler " + getClass().getName() +
"Invoking " + getClass().getSimpleName() +
" with arguments " + argumentsAsString + freeArgs,
CompilerMessageLocation.NO_LOCATION);
errStream.println(printArgsMessage);