From 4b5b507ec9864f7f6e3c7c9181fc99259fc77cbc Mon Sep 17 00:00:00 2001 From: "Z. Cliffe Schreuders" Date: Wed, 10 Jul 2019 11:43:30 +0100 Subject: [PATCH] remove debug message --- secgen.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/secgen.rb b/secgen.rb index 8f1b404d9..427d36d19 100644 --- a/secgen.rb +++ b/secgen.rb @@ -323,7 +323,7 @@ def get_vm_names(scenario) vm_names = [] parser = Nori.new scenario_hash = parser.parse(File.read(scenario)) - Print.debug "scenario_hash: #{scenario_hash}" + # Print.debug "scenario_hash: #{scenario_hash}" if scenario_hash.key?('scenario') # work around for a parsing quirk scenario_hash = scenario_hash['scenario'] end @@ -336,7 +336,6 @@ def get_vm_names(scenario) else Print.debug "Not an array or hash?: #{scenario_hash['system']}" end - Print.debug vm_names.to_s vm_names end