From 29fda8eb30eaa547557d49740d4c012657abdf4c Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Fri, 26 Feb 2021 11:24:23 -0700 Subject: [PATCH] Per #1588, remove the Debug(4) log message about duplicate obs since it's been moved up to a higher level. --- met/src/libcode/vx_statistics/pair_base.cc | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/met/src/libcode/vx_statistics/pair_base.cc b/met/src/libcode/vx_statistics/pair_base.cc index bfcebaad0c..490037c78b 100644 --- a/met/src/libcode/vx_statistics/pair_base.cc +++ b/met/src/libcode/vx_statistics/pair_base.cc @@ -424,13 +424,7 @@ bool PairBase::add_point_obs(const char *sid, if(check_unique) { vector::iterator o_it = (*it).second.obs.begin(); for(;o_it != (*it).second.obs.end(); o_it++) { - if( (*o_it).ut == ut) { - mlog << Debug(4) - << "Skipping duplicate observation for [lat:lon:level:elevation] = [" - << obs_key << "] valid at " << unix_to_yyyymmdd_hhmmss(ut) - << " with value = " << o << "\n"; - return false; - } + if((*o_it).ut == ut) return false; } }