From 40b788feb8f2189e572fa0820fe49673e5b677ba Mon Sep 17 00:00:00 2001 From: Mikael Simberg Date: Thu, 25 Jul 2024 15:43:23 +0200 Subject: [PATCH] Remove duplicate [error] output when failing to launch shell --- src/util/shell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/shell.cpp b/src/util/shell.cpp index 40b8e13..d35165f 100644 --- a/src/util/shell.cpp +++ b/src/util/shell.cpp @@ -46,7 +46,7 @@ int exec(const std::vector& args) { int r = execvp(argv[0], argv.data()); // } // end unsafe - spdlog::error("[error] unable to launch a new shell"); + spdlog::error("unable to launch a new shell"); return r; }