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
586 B
Go
16 lines
586 B
Go
package context
|
|
|
|
// WithVersion stores the application version in the context. The new context
|
|
// gets a logger to ensure log messages are marked with the application
|
|
// version.
|
|
func WithVersion(ctx Context, version string) Context {
|
|
ctx = WithValue(ctx, "version", version)
|
|
// push a new logger onto the stack
|
|
return WithLogger(ctx, GetLogger(ctx, "version"))
|
|
}
|
|
|
|
// GetVersion returns the application version from the context. An empty
|
|
// string may returned if the version was not set on the context.
|
|
func GetVersion(ctx Context) string {
|
|
return GetStringValue(ctx, "version")
|
|
}
|