Skip to content

Commit

Permalink
Added logs on tracer start & end node-red#5
Browse files Browse the repository at this point in the history
  • Loading branch information
yahav-ohana committed Jun 17, 2023
1 parent c0430c8 commit ddda90b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,9 @@ jobs:
- name: Check Tracer Status
run: |
echo "Tracer process started at ${{ steps.start-tracer.outputs.start-time }}"
echo "Tracer process ended at ${{ steps.end-tracer.outputs.end-time }}"
start_time=${{ steps.start-tracer.outputs.start-time }}
end_time=${{ steps.end-tracer.outputs.end-time }}
duration=$((end_time - start_time))
echo "Tracer process started at $start_time"
echo "Tracer process ended at $end_time"
echo "Tracer process duration: $duration seconds"

0 comments on commit ddda90b

Please sign in to comment.