This commit is contained in:
Megan Marsh 2019-04-03 09:43:39 -07:00
parent 12fc1fa751
commit 365b32eb9c
1 changed files with 2 additions and 1 deletions

View File

@ -309,7 +309,8 @@ PostProcessorRunSeqLoop:
} else { } else {
log.Printf("Deleting prior artifact from post-processor '%s'", corePP.processorType) log.Printf("Deleting prior artifact from post-processor '%s'", corePP.processorType)
if err := priorArtifact.Destroy(); err != nil { if err := priorArtifact.Destroy(); err != nil {
errors = append(errors, fmt.Errorf("Failed cleaning up prior artifact: %s", err)) log.Printf("Error is %#v", err)
errors = append(errors, fmt.Errorf("Failed cleaning up prior artifact: %s; pp is %s", err, corePP.processorType))
} }
} }
} }