Make log priority consistent for execution messages

This commit is contained in:
Cameron Gutman 2022-12-29 12:47:44 -06:00
parent a95a553970
commit e00aa4f0f3

View File

@ -150,7 +150,7 @@ int proc_t::execute(int app_id) {
}
if(proc.cmd.empty()) {
BOOST_LOG(debug) << "Executing [Desktop]"sv;
BOOST_LOG(info) << "Executing [Desktop]"sv;
placebo = true;
}
else {
@ -202,7 +202,7 @@ void proc_t::terminate() {
continue;
}
BOOST_LOG(debug) << "Executing: ["sv << cmd << ']';
BOOST_LOG(info) << "Executing: ["sv << cmd << ']';
auto ret = exe_with_full_privs(cmd, _env, _pipe, ec);