From 9d25fee1dc62f9846eadb93069e8b18c101ac372 Mon Sep 17 00:00:00 2001 From: Alexis Lopez Zubieta Date: Tue, 6 Nov 2018 08:26:15 -0600 Subject: [PATCH] Make "Deploying custom AppRun" a regular message --- src/core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.cpp b/src/core.cpp index bec36b8..d834e6b 100644 --- a/src/core.cpp +++ b/src/core.cpp @@ -58,7 +58,7 @@ namespace linuxdeploy { ldLog() << std::endl << "-- Deploying files into AppDir root directory --" << std::endl; if (!customAppRunPath.empty()) { - ldLog() << LD_WARNING << "Deploying custom AppRun: " << customAppRunPath << std::endl; + ldLog() << LD_INFO << "Deploying custom AppRun: " << customAppRunPath << std::endl; appDir.deployFile(customAppRunPath, appDir.path() / "AppRun"); appDir.executeDeferredOperations(); }