Skip to content

Commit

Permalink
Make logging run at 100ms until further investigation
Browse files Browse the repository at this point in the history
  • Loading branch information
superpenguin612 committed Mar 7, 2024
1 parent 0e3e92d commit 132237a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,14 @@ public void robotInit() {
// sets the LoggingManager to run every 100ms and on an offset of 10ms from the
// main thread
LoggingManager.getInstance().init();
addPeriodic(LoggingManager.getInstance()::run, 0.100, 0.010);
LiveWindow.disableAllTelemetry();
}

@Override
public void robotPeriodic() {
CommandScheduler.getInstance().run();
LoggingManager.getInstance().run();
// LoggingManager.getInstance().run();
}

@Override
Expand Down

0 comments on commit 132237a

Please sign in to comment.