Skip to content

Commit

Permalink
style: Print trial node id on the console
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertGemmaJr committed Sep 26, 2023
1 parent 79b3f6f commit 257de9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/timelines/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { createHoneycombTimeline } from "./honeycombTimeline";
* Note that Honeycomb combines these with other options required for Honeycomb to operate correctly
*/
const jsPsychOptions = {
on_trial_finish: (data) => console.log("A trial just ended, here are the latest data:", data),
on_trial_finish: (data) => console.log(`Trial ${data.internal_node_id} just finished:`, data),
default_iti: 250,
};

Expand Down

0 comments on commit 257de9e

Please sign in to comment.