Since I just hunted down this change to see if the same thing could be done to the compiler plugin... here's what was changed:
$ svn log -r9703
------------------------------------------------------------------------
r9703 | pgier | 2009-05-13 11:59:17 -0400 (Wed, 13 May 2009) | 1 line
MEXEC-67 Print executed command when in debug mode.
------------------------------------------------------------------------
$ svn diff -r9702:9703
Index: src/main/java/org/codehaus/mojo/exec/ExecMojo.java
===================================================================
— src/main/java/org/codehaus/mojo/exec/ExecMojo.java (revision 9702)
+++ src/main/java/org/codehaus/mojo/exec/ExecMojo.java (revision 9703)
@@ -276,6 +276,8 @@
try
{
+ getLog().debug( "Executing command line: " + commandLine );
+
int resultCode = executeCommandLine( commandLine, stdout, stderr );
if ( isResultCodeAFailure( resultCode ) )
Since I just hunted down this change to see if the same thing could be done to the compiler plugin... here's what was changed:
$ svn log -r9703
------------------------------------------------------------------------
r9703 | pgier | 2009-05-13 11:59:17 -0400 (Wed, 13 May 2009) | 1 line
MEXEC-67Print executed command when in debug mode.------------------------------------------------------------------------
$ svn diff -r9702:9703
Index: src/main/java/org/codehaus/mojo/exec/ExecMojo.java
===================================================================
— src/main/java/org/codehaus/mojo/exec/ExecMojo.java (revision 9702)
+++ src/main/java/org/codehaus/mojo/exec/ExecMojo.java (revision 9703)
@@ -276,6 +276,8 @@
try
{
+ getLog().debug( "Executing command line: " + commandLine );
+
int resultCode = executeCommandLine( commandLine, stdout, stderr );
if ( isResultCodeAFailure( resultCode ) )
MEXEC-67Print executed command when in debug mode. ------------------------------------------------------------------------ $ svn diff -r9702:9703 Index: src/main/java/org/codehaus/mojo/exec/ExecMojo.java =================================================================== — src/main/java/org/codehaus/mojo/exec/ExecMojo.java (revision 9702) +++ src/main/java/org/codehaus/mojo/exec/ExecMojo.java (revision 9703) @@ -276,6 +276,8 @@ try { + getLog().debug( "Executing command line: " + commandLine ); + int resultCode = executeCommandLine( commandLine, stdout, stderr ); if ( isResultCodeAFailure( resultCode ) )