Skip to content

Commit

Permalink
#2027 Added a debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
Howard Soh committed Feb 10, 2022
1 parent 221e148 commit b2e7276
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions met/src/libcode/vx_statistics/met_stats.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1534,6 +1534,7 @@ void VL1L2Info::assign(const VL1L2Info &c) {
void VL1L2Info::calc_ncep_stats() {
double u_diff, v_diff;
int n = vcount;
const char *method_name = "VL1L2Info::calc_ncep_stats() -> ";

u_diff = uf_bar - uo_bar;
v_diff = vf_bar - vo_bar;
Expand Down Expand Up @@ -1569,6 +1570,11 @@ void VL1L2Info::calc_ncep_stats() {

DIR_ABSERR = fabs(DIR_ERR);

mlog << Debug(9) << method_name << "DIR_ERR=" << DIR_ERR
<< " from vf_bar=" << vf_bar << ", uo_bar=" << uo_bar
<< ", uf_bar=" << uf_bar << ", vo_bar=" << vo_bar
<< "\n";

return;
}

Expand Down

0 comments on commit b2e7276

Please sign in to comment.