diff mx/commands.py @ 4657:d4e039a3e083

Print java.exe when execuing "mx vm"
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 21 Feb 2012 13:03:38 +0100
parents 5b0a2334437d
children b06ade6e927c
line wrap: on
line diff
--- a/mx/commands.py	Mon Feb 20 18:01:22 2012 +0100
+++ b/mx/commands.py	Tue Feb 21 13:03:38 2012 +0100
@@ -476,6 +476,7 @@
     if mx.java().debug:
         args = ['-Xdebug', '-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000'] + args
     exe = join(_jdk(build), 'bin', mx.exe_suffix('java'))
+    print('Executing VM ' + exe)
     return mx.run([exe, '-' + vm] + args, nonZeroIsFatal=nonZeroIsFatal, out=out, err=err, cwd=cwd, timeout=timeout)