summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/stagedebug_cmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/stagedebug_cmd.cpp')
-rw-r--r--src/mongo/db/exec/stagedebug_cmd.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mongo/db/exec/stagedebug_cmd.cpp b/src/mongo/db/exec/stagedebug_cmd.cpp
index 12a5dd29745..fb3c5d8929f 100644
--- a/src/mongo/db/exec/stagedebug_cmd.cpp
+++ b/src/mongo/db/exec/stagedebug_cmd.cpp
@@ -207,10 +207,9 @@ public:
resultBuilder.done();
- if (PlanExecutor::FAILURE == state || PlanExecutor::DEAD == state) {
- error() << "Plan executor error during StageDebug command: "
- << PlanExecutor::statestr(state)
- << ", stats: " << redact(Explain::getWinningPlanStats(exec.get()));
+ if (PlanExecutor::FAILURE == state) {
+ error() << "Plan executor error during StageDebug command: FAILURE, stats: "
+ << redact(Explain::getWinningPlanStats(exec.get()));
uassertStatusOK(WorkingSetCommon::getMemberObjectStatus(obj).withContext(
"Executor error during StageDebug command"));