Skip to content

Commit 03aec7d

Browse files
committed
time parsing error msg
1 parent 866a57b commit 03aec7d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

hapiclient/hapitime.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,8 @@ def hapitime2datetime(Time, **kwargs):
274274
toc = time.time() - tic
275275
log("Pandas processing time = %.4fs, first time = %s" % (toc, Timeo))
276276
return Time
277-
except:
277+
except Exception as e:
278+
log("Pandas processing failed with error: " + str(e))
278279
log("Pandas processing failed, first time = %s" % Time[0])
279280

280281

0 commit comments

Comments
 (0)