diff --git a/include/openspace/util/spicemanager.h b/include/openspace/util/spicemanager.h index 314c0b00d1..852e4cf386 100644 --- a/include/openspace/util/spicemanager.h +++ b/include/openspace/util/spicemanager.h @@ -674,7 +674,7 @@ private: std::map > _ckCoverageTimes; std::map > _spkCoverageTimes; - const static bool _showErrors = true; + const static bool _showErrors = false; /// The last assigned kernel-id, used to determine the next free kernel id KernelIdentifier _lastAssignedKernel; diff --git a/src/util/spicemanager.cpp b/src/util/spicemanager.cpp index ed30de2b3f..2c1289e659 100644 --- a/src/util/spicemanager.cpp +++ b/src/util/spicemanager.cpp @@ -575,7 +575,6 @@ bool SpiceManager::getEstimatedPosition(const double time, const std::string tar targetPosition = PowerScaledCoordinate::CreatePowerScaledCoordinate(pos[0], pos[1], pos[2]); - std::cout << "estimating position for: " << target << ", w observer: " << observer << std::endl; checkForError("Error estimating positin for target: " + target + ", or observer: " + observer); return targetFound && observerFound; @@ -896,7 +895,6 @@ bool SpiceManager::getEstimatedTransformMatrix(const double time, const std::str } } } - std::cout << "estimating from frame: " << fromFrame << ", to frame: " << toFrame << std::endl; bool hasError = checkForError("Error estimating transform matrix from frame: " + fromFrame + ", to frame: " + toFrame);