Pass -log-opts map to logdrivers

Signed-off-by: Ahmet Alp Balkan <ahmetalpbalkan@gmail.com>
Upstream-commit: 8b11592d699df669b529e34658ef2d870c8a75f8
Component: engine
This commit is contained in:
Ahmet Alp Balkan
2015-05-18 16:50:14 +00:00
parent ce99abf239
commit bcf5956dfc
2 changed files with 2 additions and 0 deletions

View File

@ -1452,6 +1452,7 @@ func (container *Container) getLogger() (logger.Logger, error) {
return nil, fmt.Errorf("Failed to get logging factory: %v", err)
}
ctx := logger.Context{
Config: cfg.Config,
ContainerID: container.ID,
ContainerName: container.Name,
}

View File

@ -10,6 +10,7 @@ type Creator func(Context) (Logger, error)
// Context provides enough information for a logging driver to do its function
type Context struct {
Config map[string]string
ContainerID string
ContainerName string
LogPath string