MCPcopy Create free account
hub / github.com/JSBSim-Team/jsbsim / Debug

Method Debug

src/initialization/FGTrimAnalysisControl.cpp:484–508  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

482// a message is printed out when they go out of bounds
483
484void FGTrimAnalysisControl::Debug(int from)
485{
486
487 if (debug_lvl <= 0) return;
488 if (debug_lvl & 1 ) { // Standard console startup message output
489 if (from == 0) { // Constructor
490
491 }
492 }
493 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
494 FGLogging log(LogLevel::DEBUG);
495 if (from == 0) log << "Instantiated: FGTrimAnalysisControl\n";
496 if (from == 1) log << "Destroyed: FGTrimAnalysisControl\n";
497 }
498 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
499 }
500 if (debug_lvl & 8 ) { // Runtime state variables
501 }
502 if (debug_lvl & 16) { // Sanity checking
503 }
504 if (debug_lvl & 64) {
505 if (from == 0) { // Constructor
506 }
507 }
508}
509}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected