Use local timezone with CLI #210

Merged
Jef Roosens merged 2 commits from Chewing_Bever/vieter:utc-only into dev 2022-05-31 12:55:17 +02:00
Showing only changes of commit aded6d438a - Show all commits

View file

@ -17,8 +17,9 @@ pub fn (bl &BuildLog) str() string {
mut parts := [
'id: $bl.id',
'repo id: $bl.repo_id',
'start time: $bl.start_time',
'end time: $bl.end_time',
'start time: $bl.start_time.local()',
'end time: $bl.end_time.local()',
'duration: ${bl.end_time - bl.start_time}',
'arch: $bl.arch',
'exit code: $bl.exit_code',
]