Skip to content

Commit

Permalink
Logging of powersave
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaelers committed Jun 3, 2024
1 parent 848a4af commit e30378d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libs/core/src/Core.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1140,7 +1140,6 @@ Core::process_timewarp()

if (gap >= 10)
{
TRACE_MSG("Time warp of {} seconds. Powersave", gap);
spdlog::info("Time warp of {} seconds. Powersave", gap);
TRACE_MSG("current time {}", current_time);
TRACE_MSG("synced time {}", TimeSource::get_real_time_sec_sync());
Expand All @@ -1161,7 +1160,7 @@ Core::process_timewarp()

if (powersave && powersave_resume_time != 0 && current_time > powersave_resume_time + 30)
{
TRACE_MSG("End of time warp after powersave");
spdlog::info("End of time warp after powersave");

powersave = false;
powersave_resume_time = 0;
Expand Down

0 comments on commit e30378d

Please sign in to comment.