From e00aa4f0f35e3a6cac7202998739ef867654fdd2 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Thu, 29 Dec 2022 12:47:44 -0600 Subject: [PATCH] Make log priority consistent for execution messages --- src/process.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/process.cpp b/src/process.cpp index 05dabe19..43999073 100644 --- a/src/process.cpp +++ b/src/process.cpp @@ -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);