From a0ed3977cecca8c1711fad6c0cb61c355afa4ddb Mon Sep 17 00:00:00 2001 From: curt Date: Tue, 11 Apr 2000 20:38:45 +0000 Subject: [PATCH] Comment some debugging output. --- src/Cockpit/steam.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cockpit/steam.cxx b/src/Cockpit/steam.cxx index d3dda3f98..41b5e6b7c 100644 --- a/src/Cockpit/steam.cxx +++ b/src/Cockpit/steam.cxx @@ -109,7 +109,7 @@ void FGSteam::set_lowpass ( double *outthe, double inthe, double tc ) } else { /* Moderate time step; non linear response */ double keep = exp ( -tc ); - printf ( "ARP: Keep is %f\n", keep ); + // printf ( "ARP: Keep is %f\n", keep ); (*outthe) = (*outthe) * keep + inthe * ( 1.0 - keep ); }