We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0ad69d commit 72702feCopy full SHA for 72702fe
entrypoint.sh
@@ -5,15 +5,15 @@ do
5
sleep $waitTime &
6
wait $!
7
instruction=$(shuf -i 0-4 -n 1)
8
- d=`date`
+ d=`date --iso-8601=seconds`
9
case "$instruction" in
10
- "1") echo "ERROR ($d) something happened in this execution."
+ "1") echo "$d ERROR something happened in this execution."
11
;;
12
- "2") echo "INFO ($d) takes the value and converts it to string."
+ "2") echo "$d INFO takes the value and converts it to string."
13
14
- "3") echo "WARN ($d) variable not in use."
+ "3") echo "$d WARN variable not in use."
15
16
- "4") echo "DEBUG ($d) first loop completed."
+ "4") echo "$d DEBUG first loop completed."
17
18
esac
19
done
0 commit comments