You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a stack. You can't have overlapping timers, but you can have nested timers.
tictoc::tic("CONNECTION_1")
tictoc::tic("CONNECTION_1 -- part 1")
tictoc::toc() # This ends part 1
tictoc::tic("CONNECTION_1 -- part 2")
tictoc::toc() # This ends part 2
tictoc::toc() # This ends the overall timer
Note that I am not the developer of tictoc, just someone who finds it useful :)
tictoc::tic("CONNECTION_1")
tictoc::toc("CONNECTION_1")
CONNECTION_1: 3.039 sec elapsed
Error in if (log) { : argument is not interpretable as logical
The text was updated successfully, but these errors were encountered: