Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi, How Can I Get Programmatically A Task'S Logged Stderr Stream?

Hi, how can I get programmatically a Task's logged stderr stream?

  
  
Posted 3 years ago
Votes Newest

Answers 2


Hi ImmensePenguin78 ,

You can get all the console outputs using task.get_reported_console_output() . can this do the trick?

  
  
Posted 3 years ago

Partially, as I wanted to get logs with a level of ERROR and above, but using APIClient I've managed to get the reports anyway. Thanks.

  
  
Posted 3 years ago
548 Views
2 Answers
3 years ago
one year ago
Tags