Skip to content

Commit

Permalink
Log error when compose up cannot get host information (#24723)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoriano authored Mar 24, 2021
1 parent 01eb297 commit e200289
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libbeat/tests/compose/compose.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func EnsureUp(t testing.TB, service string, options ...UpOption) HostInfo {
// Get host information
host, err := compose.HostInformation(service)
if err != nil {
t.Fatalf("getting host for %s", service)
t.Fatalf("getting host for %s: %v", service, err)
}

return host
Expand Down

0 comments on commit e200289

Please sign in to comment.