Add infoMsg for enforceHighstate

Change-Id: I4ebc8f161091e6d30fd34e89e0a99c8384d0e98a
diff --git a/src/com/mirantis/mk/Salt.groovy b/src/com/mirantis/mk/Salt.groovy
index 8183252..a63865f 100644
--- a/src/com/mirantis/mk/Salt.groovy
+++ b/src/com/mirantis/mk/Salt.groovy
@@ -208,6 +208,10 @@
  */
 def enforceHighstate(master, target, output = false, failOnError = true, batch = null) {
     def out = runSaltCommand(master, 'local', ['expression': target, 'type': 'compound'], 'state.highstate', batch)
+    def common = new com.mirantis.mk.Common()
+
+    common.infoMsg("Running step state.highstate on ${target}")
+
     checkResult(out, failOnError, output)
     return out
 }