From 17d7808200e4ab215a4ccde02b937fc294259495 Mon Sep 17 00:00:00 2001 From: James Turner Date: Wed, 22 Apr 2020 10:54:44 +0100 Subject: [PATCH] Remove a log message --- simgear/math/interpolater.cxx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/simgear/math/interpolater.cxx b/simgear/math/interpolater.cxx index 01d6f0b6..6b67e77a 100644 --- a/simgear/math/interpolater.cxx +++ b/simgear/math/interpolater.cxx @@ -56,8 +56,6 @@ SGInterpTable::SGInterpTable(const SGPropertyNode* interpolation) // file SGInterpTable::SGInterpTable( const std::string& file ) { - SG_LOG( SG_MATH, SG_INFO, "Initializing Interpolator for " << file ); - sg_gzifstream in( SGPath::fromUtf8(file) ); if ( !in.is_open() ) { SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << file ); @@ -78,8 +76,6 @@ SGInterpTable::SGInterpTable( const std::string& file ) // file SGInterpTable::SGInterpTable( const SGPath& file ) { - SG_LOG( SG_MATH, SG_INFO, "Initializing Interpolator for " << file ); - sg_gzifstream in( file ); if ( !in.is_open() ) { SG_LOG( SG_GENERAL, SG_ALERT, "Cannot open file: " << file );