Skip to content

Commit

Permalink
Fix logging in Interpolate
Browse files Browse the repository at this point in the history
  • Loading branch information
raguridan committed Aug 8, 2024
1 parent 872e488 commit b64addc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/multio/action/interpolate/Interpolate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ void fill_input(const eckit::LocalConfiguration& cfg, mir::param::SimpleParametr
}

if (std::regex_match(input, match, ll)) {
std::cout << "matched ll:" << std::endl;
LOG_DEBUG_LIB(LibMultio) << "matched ll:" << std::endl;
regular_ll(std::stod(match[1].str()), std::stod(match[4].str()));
return;
}
Expand Down Expand Up @@ -432,7 +432,7 @@ void fill_job(const eckit::LocalConfiguration& cfg, mir::param::SimpleParametris
}
}
else {
std::cout << "Grid not implemented" << std::endl;
throw eckit::UserError("action-interpolate :: Grid not implemented", Here());
}
}
}
Expand Down

0 comments on commit b64addc

Please sign in to comment.