# HG changeset patch # User Laurent Daynes # Date 1352474918 -3600 # Node ID 6d1870a7554a0465aa18e97981255b5f0e6437d9 # Parent 9611d0ccb4eca209006a32082d30785533889a30 remove debug printout. diff -r 9611d0ccb4ec -r 6d1870a7554a mx/commands.py --- a/mx/commands.py Fri Nov 09 15:23:35 2012 +0100 +++ b/mx/commands.py Fri Nov 09 16:28:38 2012 +0100 @@ -623,7 +623,6 @@ args = ['-javaagent:' + jacocoagent.get_path(True) + '=' + ','.join([k + '=' + v for k, v in agentOptions.items()])] + args if '-d64' not in args: args = ['-d64'] + args - print ['args = '] + args exe = join(jdk, 'bin', mx.exe_suffix('java')) dbg = _native_dbg.split() if _native_dbg is not None else [] return mx.run(dbg + [exe, '-' + vm] + args, nonZeroIsFatal=nonZeroIsFatal, out=out, err=err, cwd=cwd, timeout=timeout)