| 482 | // a message is printed out when they go out of bounds |
| 483 | |
| 484 | void 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected