diff --git a/tools/itango/start-DS.sh b/tools/itango/start-DS.sh index 0afdaf10a81d4bf81a5480763e5dcbe50230097b..9b58909500850e2ad966f070c11723571c5bdf08 100755 --- a/tools/itango/start-DS.sh +++ b/tools/itango/start-DS.sh @@ -38,4 +38,5 @@ else fi deviceServerPath=${myDir/${HOME}/\/hosthome} -docker exec -it itango python3 ${deviceServerPath}/${runThis} ${instance} ${@} +# Tango log lines start with a UNIX timestamp. Replace them with the UTC time. +docker exec -it itango python3 ${deviceServerPath}/${runThis} ${instance} -v ${@} | perl -ne 'use Time::Piece; s/^([0-9]+)/gmtime($1)->strftime("%F %T")/e; print;'