diff --git a/cmd/common.go b/cmd/common.go
index 14f2998d67f2c7acad16dbc553443e54f0a33538..3708d1fb1a6feb91d12a2269132c6c20e0b6f71c 100644
--- a/cmd/common.go
+++ b/cmd/common.go
@@ -19,6 +19,7 @@ import (
 	"io/ioutil"
 
 	"github.com/aquasecurity/kube-bench/check"
+	"github.com/golang/glog"
 	"github.com/spf13/viper"
 )
 
@@ -54,6 +55,8 @@ func runChecks(t check.NodeType) {
 	var err error
 	var typeConf *viper.Viper
 
+	glog.V(1).Info(fmt.Sprintf("Using config file: %s\n", viper.ConfigFileUsed()))
+
 	switch t {
 	case check.MASTER:
 		file = masterFile
@@ -131,8 +134,6 @@ func colorPrint(state check.State, s string) {
 
 // prettyPrint outputs the results to stdout in human-readable format
 func prettyPrint(r *check.Controls, summary check.Summary) {
-	colorPrint(check.INFO, fmt.Sprintf("Using config file: %s\n", viper.ConfigFileUsed()))
-
 	colorPrint(check.INFO, fmt.Sprintf("%s %s\n", r.ID, r.Text))
 	for _, g := range r.Groups {
 		colorPrint(check.INFO, fmt.Sprintf("%s %s\n", g.ID, g.Text))