Make log priority consistent for execution messages
This commit is contained in:
parent
a95a553970
commit
e00aa4f0f3
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue