aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThéo de la Hogue2024-09-03 16:51:27 +0200
committerThéo de la Hogue2024-09-03 16:51:27 +0200
commit627e17f70ead502049a1e19881cc9332eb1ec1b1 (patch)
tree570b0a49bac1213062d58b4b9b957322cd3f2daa
parent24f9017d2e4c1e66f6207ab6ef54425abbc96837 (diff)
downloadargaze-627e17f70ead502049a1e19881cc9332eb1ec1b1.zip
argaze-627e17f70ead502049a1e19881cc9332eb1ec1b1.tar.gz
argaze-627e17f70ead502049a1e19881cc9332eb1ec1b1.tar.bz2
argaze-627e17f70ead502049a1e19881cc9332eb1ec1b1.tar.xz
Improving logging.info format.
-rw-r--r--src/argaze/utils/contexts/File.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/argaze/utils/contexts/File.py b/src/argaze/utils/contexts/File.py
index 91c64e2..0574a18 100644
--- a/src/argaze/utils/contexts/File.py
+++ b/src/argaze/utils/contexts/File.py
@@ -191,7 +191,7 @@ class CSV(ArFeatures.DataPlaybackContext):
self.__duration = end_ts - start_ts
self.__progression = 0.
- logging.info('Reading %i gaze positions from %s to %s...', len(dataframe), f'{start_ts}', f'{end_ts}')
+ logging.info('Reading %i gaze positions from %f to %f...', len(dataframe), start_ts, end_ts)
for index, row in dataframe.iterrows():