You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ProcessBuilder processBuilder = new ProcessBuilder(createArgumentList(specs, workingDirectory))
The stdout (and stderr) of this process is not captured anywhere. If an error occurs before jmeter is launched completely, then jmeter.log is not created and the launch error is lost, making debugging challenging.
workaround: redirect stdout to parent process (gradle's) stdout.
ProcessBuilder processBuilder = new ProcessBuilder(createArgumentList(specs, workingDirectory)).inheritIO()
The text was updated successfully, but these errors were encountered:
Jmeter is launched as a separate process
The stdout (and stderr) of this process is not captured anywhere. If an error occurs before jmeter is launched completely, then jmeter.log is not created and the launch error is lost, making debugging challenging.
workaround: redirect stdout to parent process (gradle's) stdout.
The text was updated successfully, but these errors were encountered: