Skip to content

Commit

Permalink
Per #1588, remove the Debug(4) log message about duplicate obs since …
Browse files Browse the repository at this point in the history
…it's been moved up to a higher level.
  • Loading branch information
JohnHalleyGotway committed Feb 26, 2021
1 parent b448ecd commit 29fda8e
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions met/src/libcode/vx_statistics/pair_base.cc
Original file line number Diff line number Diff line change
Expand Up @@ -424,13 +424,7 @@ bool PairBase::add_point_obs(const char *sid,
if(check_unique) {
vector<ob_val_t>::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;
}
}

Expand Down

0 comments on commit 29fda8e

Please sign in to comment.