Reply To: Trouble logging participant information

PennController for IBEX Forums Support Trouble logging participant information Reply To: Trouble logging participant information

#7098
Jeremy
Keymaster

Hello,

The reason you see “Canvas” is because you use log on your Canvas element, so the results file will report the timestamp for the execution of its print command.
You are also using log on your Key element, which you probably want, because it will report which of E/I was pressed.
Finally, you are calling log on the “wait-separacao” Timer element too, but you meant to call it on newTrial() because what you want is to add columns to every line of your results file for those trials that report the values from the “imagem” and “versao” columns of your table:

    // ...
    ,
    newTimer("wait-separacao",2500)
      .start()
      .wait()
  )
  .log("imagens", row.imagem)
  .log("item", row.versao)
);

Jeremy