We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0780adb commit 32c73b9Copy full SHA for 32c73b9
1 file changed
stats/wrapper
@@ -56,7 +56,7 @@ check_die()
56
[[ -f $RESULT_ROOT/last_state ]] || return 0
57
58
grep -q "exit_code.99: 1" $RESULT_ROOT/last_state && {
59
- log_warn "job exited due to die" "$RESULT_ROOT"
+ echo "job exited due to die: $RESULT_ROOT" 1>&2
60
return 1
61
}
62
@@ -70,7 +70,7 @@ check_env_issue()
70
71
72
grep -q "wget_initrd_fail: 1" $RESULT_ROOT/last_state && {
73
- log_warn "job exited due to wget_initrd_fail" "$RESULT_ROOT"
+ echo "job exited due to wget_initrd_fail: $RESULT_ROOT" 1>&2
74
75
76
0 commit comments