From 98b32312b23bd8b52ea60831c759072a942fad3c Mon Sep 17 00:00:00 2001 From: yoavrotems Date: Tue, 17 Sep 2019 01:11:25 +0300 Subject: [PATCH] Add constraints info for debug mod Thought it will be informational data when running linux-bench in debug mode --- app.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app.go b/app.go index b168e99..aacc7a5 100644 --- a/app.go +++ b/app.go @@ -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 }