From efd4078f707c351b55ba2f60f11a534b02cf9b96 Mon Sep 17 00:00:00 2001 From: Ian Roddis Date: Fri, 7 Jan 2022 17:40:07 -0400 Subject: [PATCH] Adding executor log to output --- daggyd/libdaggyd/src/Server.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/daggyd/libdaggyd/src/Server.cpp b/daggyd/libdaggyd/src/Server.cpp index 965e7d6..23a930b 100644 --- a/daggyd/libdaggyd/src/Server.cpp +++ b/daggyd/libdaggyd/src/Server.cpp @@ -587,7 +587,8 @@ namespace daggy::daggyd { << "
rc: " << attempt.rc
            << "\n\nstdout:\n--------------\n"
            << attempt.outputLog << "\n\nstderr:\n--------------\n"
-           << attempt.errorLog << "
"; + << attempt.errorLog << "\n\nexecutor:\n--------------\n" + << attempt.executorLog << ""; } ss << "";