From c6c96eb688f7131a6d9584b091c26e8c52f74770 Mon Sep 17 00:00:00 2001 From: curt Date: Wed, 25 Sep 2002 12:38:09 +0000 Subject: [PATCH] Remove 'cout' --- src/Systems/electrical.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Systems/electrical.cxx b/src/Systems/electrical.cxx index a704a5a1f..cea6457e4 100644 --- a/src/Systems/electrical.cxx +++ b/src/Systems/electrical.cxx @@ -72,8 +72,8 @@ double FGElectricalSupplier::get_output() { return amps; } else if ( model == FG_ALTERNATOR ) { // scale alternator output for rpms < 600. For rpms >= 600 - // give full output. This is just a WAG, but I'm keeping - // things simple to start. + // give full output. This is just a WAG, and probably not how + // it really works but I'm keeping things "simple" to start. double rpm = _rpm_node->getDoubleValue(); double factor = rpm / 600.0; if ( factor > 1.0 ) { @@ -85,7 +85,7 @@ double FGElectricalSupplier::get_output() { // cout << "external amps = " << 0.0 << endl; return 0.0; } else { - cout << "unknown supplier type" << endl; + SG_LOG( SG_ALL, SG_ALERT, "unknown supplier type" ); } return 0.0; @@ -334,7 +334,7 @@ void FGElectricalSystem::propogate( FGElectricalComponent *node, double val, } // cout << s << " val = " << current << endl; } else { - cout << "unkown node type" << endl; + SG_LOG( SG_ALL, SG_ALERT, "unkown node type" ); } if ( current > node->get_value() ) { -- 2.39.2