b7daa2f3a4
Update traefik dependencies (docker/docker and related) - Update dependencies - Fix compilation problems - Remove vdemeester/docker-events (in docker api now) - Remove `integration/vendor` - Use `testImport` - update some deps. - regenerate the lock from scratch (after a `glide cc`)
16 lines
502 B
Go
16 lines
502 B
Go
package project
|
|
|
|
import (
|
|
"golang.org/x/net/context"
|
|
|
|
"github.com/docker/libcompose/project/events"
|
|
)
|
|
|
|
// Log aggregates and prints out the logs for the specified services.
|
|
func (p *Project) Log(ctx context.Context, follow bool, services ...string) error {
|
|
return p.forEach(services, wrapperAction(func(wrapper *serviceWrapper, wrappers map[string]*serviceWrapper) {
|
|
wrapper.Do(nil, events.NoEvent, events.NoEvent, func(service Service) error {
|
|
return service.Log(ctx, follow)
|
|
})
|
|
}), nil)
|
|
}
|