From 1f3f6111f716f31a97246d8bb1af7f1ebfffa18b Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 28 Nov 2017 08:40:12 -0500 Subject: [PATCH] [libcalamares] Log output from failed commands --- src/libcalamares/utils/CalamaresUtilsSystem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcalamares/utils/CalamaresUtilsSystem.cpp b/src/libcalamares/utils/CalamaresUtilsSystem.cpp index 35f394364..4103140f9 100644 --- a/src/libcalamares/utils/CalamaresUtilsSystem.cpp +++ b/src/libcalamares/utils/CalamaresUtilsSystem.cpp @@ -209,8 +209,8 @@ System::targetEnvOutput( const QStringList& args, cLog() << "Finished. Exit code:" << r; if ( r != 0 ) { - cLog() << "Target cmd" << args; - cLog() << "Target out" << output; + cLog() << "Target cmd:" << args; + cLog().noquote() << "Target output:\n" << output; } return r; }