Skip to content

Commit

Permalink
Just lining up a log message in the output of gen_vx_mask.
Browse files Browse the repository at this point in the history
  • Loading branch information
MET Tools Test Account committed Apr 5, 2021
1 parent 4b7b768 commit 69f5b5c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions met/src/tools/other/gen_vx_mask/gen_vx_mask.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1161,8 +1161,10 @@ DataPlane combine(const DataPlane &dp_data, const DataPlane &dp_mask,
// List the number of points inside the mask
if(logic != SetLogic_None) {
mlog << Debug(3)
<< "Mask " << setlogic_to_string(logic) << ": " << n_in
<< " of " << grid.nx() * grid.ny() << " points inside\n";
<< "Mask " << setlogic_to_string(logic)
<< (logic == SetLogic_Intersection ? ":\t" : ":\t\t")
<< n_in << " of " << grid.nx() * grid.ny()
<< " points inside\n";
}

return(dp);
Expand Down

0 comments on commit 69f5b5c

Please sign in to comment.