Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 649595a8ab70
Choose a base ref
...
head repository: mockingbirdnest/Principia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6c034d378c81
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Mar 28, 2020

  1. Less verbose trace.

    pleroy committed Mar 28, 2020
    Copy the full SHA
    0b5365d View commit details
  2. Copy the full SHA
    e9b62a4 View commit details
  3. Merge pull request #2509 from pleroy/FrobeniusDebug

    Make a trace less verbose
    pleroy authored Mar 28, 2020
    Copy the full SHA
    6c034d3 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 ksp_plugin/vessel.cpp
2 changes: 1 addition & 1 deletion ksp_plugin/vessel.cpp
Original file line number Diff line number Diff line change
@@ -557,7 +557,7 @@ Status Vessel::FlowPrognostication(
prognosticator_parameters.adaptive_step_parameters,
FlightPlan::max_ephemeris_steps_per_frame);
}
LOG_IF(INFO, !status.ok())
LOG_IF_EVERY_N(INFO, !status.ok(), 50)
<< "Prognostication from " << prognosticator_parameters.first_time
<< " finished at " << prognostication->back().time << " with "
<< status.ToString() << " for " << ShortDebugString();