Skip to content

Commit

Permalink
Removed debug notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
henrywinterbottom-wxdev committed Sep 21, 2023
1 parent ec9935f commit 04acac5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ush/cdo_post_ocean_format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ function ncattr_update(){

#######

start_time=$(gdate +%s) # TODO: For local debugging.
start_time=$(date +%s)
_calling_script=$(basename "${BASH_SOURCE[0]}")
start_time_human=$(gdate -d"@${start_time}" -u) # TODO: For local debugging.
start_time_human=$(date -d"@${start_time}" -u)
echo "Begin ${_calling_script} at ${start_time_human}."

# Copy the input file path to the output file path.
Expand All @@ -187,7 +187,7 @@ while IFS= read -r line; do

done < "${variable_file}"

stop_time=$(gdate +%s) # TODO: For local debugging.
stop_time=$(date +%s)
_calling_script=$(basename "${BASH_SOURCE[0]}")
stop_time_human=$(gdate -d"@${stop_time}" -u) # TODO: For local debugging.
stop_time_human=$(date -d"@${stop_time}" -u)
echo "End ${_calling_script} at ${stop_time_human}."

0 comments on commit 04acac5

Please sign in to comment.