Skip to content

Commit

Permalink
Change nested parse logs level from 'info' to 'debug' (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
eneev-a authored and jayv committed Oct 22, 2024
1 parent 154b3bd commit 75eb3f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/flexi_cfg/config/actions.h
Original file line number Diff line number Diff line change
Expand Up @@ -508,9 +508,9 @@ struct base_include_action {
}
}
out.all_files.insert(cfg_file);
logger::info("Begin nested parse: {}", cfg_file.string());
logger::debug("Begin nested parse: {}", cfg_file.string());
internal::parseNestedCore<grammar, action, control>(in.position(), include_file, out);
logger::info("End nested parse: {}", cfg_file.string());
logger::debug("End nested parse: {}", cfg_file.string());
} catch (const std::system_error& e) {
throw peg::parse_error(fmt::format("Include error: {}", e.what()), in.position());
}
Expand Down

0 comments on commit 75eb3f3

Please sign in to comment.