HerrnFugbaum
About
- Username
- HerrnFugbaum
- Joined
- Visits
- 33
- Last Active
- Roles
- Member
Comments
-
Okay nevermind, I finally managed to find a workaround creating my own logfile using the following code: import csv with open(logger, "a") as logfile : output = csv.writer(logfile, delimiter=";",lineterminator='\n') output.wr…
-
Hi Stephan, thanks for your reply. What is the default logging format in OpenSesame and how do I change it from wide to long or vice versa? Using your example only results in the last response time & last task being logged instead of response ti…
-
Hi Eduard, thanks for your reply. I do see them in the variable inspector in OpenSesame after an experimental run: https://forum.cogsci.nl/uploads/184/D0C12QTY77GP.jpg However, they do not appear in the *.csv-logfile, unless I manually add custom …
-
Nevermind, case solved. :-) In case anyone comes across the same issue, this one did the trick: with open(textfile, 'r', encoding = 'utf-8')