Skip to content

Instantly share code, notes, and snippets.

@JoSSte
Last active August 6, 2026 14:01
Show Gist options
  • Select an option

  • Save JoSSte/39a38012392d48aea433425d9c87d544 to your computer and use it in GitHub Desktop.

Select an option

Save JoSSte/39a38012392d48aea433425d9c87d544 to your computer and use it in GitHub Desktop.
Jenkins tips
## Debugging Jenkinsjob
If you need more verbose logging while debugging a failing job you might get a message about running Jenkins temporarily with `-Dorg.jenkinsci.plugins.durabletask.BourneShellScript.LAUNCH_DIAGNOSTICS=true`
Instead. go to your jenkins server's scripting console `https://<jenkins-host>/script` and type `org.jenkinsci.plugins.durabletask.BourneShellScript.LAUNCH_DIAGNOSTICS=true` (same as above, without the `-D` prefix)
Rerun your job.
(Note that you need to have the Overall/Administer permission)
but this saves you from re-starting and potenitally interrupting several jobs
### References:
https://exia.dev/blog/2022-12-01/Dynamic-Set-Jenkins-Plugin-Start-Parameters/#solution
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment