Skip to content

Instantly share code, notes, and snippets.

@aofarrel
Created May 26, 2021 23:31
Show Gist options
  • Save aofarrel/b7527053755b479485908723a797aee7 to your computer and use it in GitHub Desktop.
Save aofarrel/b7527053755b479485908723a797aee7 to your computer and use it in GitHub Desktop.
Cromwell is extremely verbose, but you can quickly find the most important parts with the power of regular expressions. These are the regular expressions I use for an iTerm2 profile, setting these to be highlighted when a match is found.
## Match a successful workflow
\[info\] WorkflowExecutionActor(.*) Workflow(.*)complete. Final Outputs:
## Match a failed task (will include the specific error thrown, although in most cases it will simply tell you "problems running X" and to check the stderr file)
\[error\] WorkflowManagerActor Workflow(.*)
## Match status changes
Status change from(.*)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment