Skip to content

Commit 1426846

Browse files
committed
Append error to logs instead of overwriting
1 parent 208c34d commit 1426846

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

iterative/resource_runner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ func resourceRunnerCreate(ctx context.Context, d *schema.ResourceData, m interfa
211211
})
212212

213213
if logError != nil {
214-
logEvents = logError.Error()
214+
logEvents += "\n" + logError.Error()
215215
}
216216

217217
if err != nil {

0 commit comments

Comments
 (0)