Skip to content

Commit bd39961

Browse files
author
W. Watson
committed
#1806 puts now logs
1 parent aad5179 commit bd39961

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/tasks/workload/5g_validator.cr

+5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@ task "smf_upf_core_validator" do |t, args|
2121
task_start_time = Time.utc
2222
testsuite_task = "smf_upf_core_validator"
2323
Log.for(testsuite_task).info { "Starting test" }
24+
25+
# todo add other resilience and compatiblity tests
26+
2427
args.named["reslience_tests"]="pod_network_latency, pod_delete"
28+
29+
# todo find heartbeat for ran
2530
t.invoke("smf_upf_heartbeat", args)
2631
end
2732
end

src/tasks/workload/reliability.cr

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@ task "pod_network_latency", ["install_litmus"] do |_, args|
131131
if spec_labels.as_h.has_key?(key) && spec_labels[key] == value
132132
current_pod_key = key
133133
current_pod_value = value
134-
puts "Match found for key: #{key} and value: #{value}"
134+
Log.info { "Match found for key: #{key} and value: #{value}"}
135135
true
136136
else
137-
puts "Match not found for key: #{key} and value: #{value}"
137+
Log.info { "Match not found for key: #{key} and value: #{value}"}
138138
false
139139
end
140140
end

0 commit comments

Comments
 (0)