Merge "Removed extra print in cicd lab template"
diff --git a/cicd-lab-pipeline.groovy b/cicd-lab-pipeline.groovy
index 4b7e74a..15252c9 100644
--- a/cicd-lab-pipeline.groovy
+++ b/cicd-lab-pipeline.groovy
@@ -305,7 +305,6 @@
             salt.enforceState(saltMaster, 'I@nginx:server', 'nginx')
 
             def failedSvc = salt.cmdRun(saltMaster, '*', """systemctl --failed | grep -E 'loaded[ \t]+failed' && echo 'Command execution failed' || true""")
-            print common.prettyPrint(failedSvc)
             if (failedSvc =~ /Command execution failed/) {
                 common.errorMsg("Some services are not running. Environment may not be fully functional!")
             }