Add constraints info for debug mod

Thought it will be informational data when running linux-bench in debug mode
This commit is contained in:
yoavrotems 2019-09-17 01:11:25 +03:00 committed by GitHub
parent 5f5d5d1ca8
commit 98b32312b2
Failed to generate hash of commit

3
app.go
View file

@ -132,6 +132,7 @@ func getConstraints() (constraints []string, err error) {
fmt.Sprintf("syslog=%s", syslog),
fmt.Sprintf("lsm=%s", lsm),
)
glog.V(1).Info(fmt.Sprintf("The constraints are:, %s", constraints))
return constraints, nil
}