diff --git a/scwx-qt/source/scwx/qt/util/geographic_lib.cpp b/scwx-qt/source/scwx/qt/util/geographic_lib.cpp index 84bf2354..bfaf408f 100644 --- a/scwx-qt/source/scwx/qt/util/geographic_lib.cpp +++ b/scwx-qt/source/scwx/qt/util/geographic_lib.cpp @@ -55,9 +55,9 @@ bool GnomonicAreaContainsCenter(geos::geom::CoordinateSequence sequence) areaContainsPoint = geos::algorithm::PointLocation::isInRing(zero, &sequence); } - catch (const std::exception&) + catch (const std::exception& ex) { - logger_->trace("Invalid area sequence"); + logger_->warn("Invalid area sequence. {}", ex.what()); } }