Skip to content

Commit 651b010

Browse files
committed
Switch some debug messages to info level
1 parent 431f6e3 commit 651b010

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/testitemcontroller.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function Base.run(
8787

8888
existing_idle_procs = filter(i->i.idle, testprocesses)
8989

90-
@debug "We need $v procs, there are $(length(testprocesses)) processes, of which $(length(existing_idle_procs)) are idle."
90+
@info "We need $v procs, there are $(length(testprocesses)) processes, of which $(length(existing_idle_procs)) are idle."
9191

9292
# Grab existing procs
9393
for p in Iterators.take(existing_idle_procs, v)
@@ -161,7 +161,7 @@ function Base.run(
161161
identified_precompile_proc = false
162162

163163
while length(our_procs[k]) < v
164-
@debug "Launching new test process"
164+
@info "Launching new test process"
165165

166166
# The first process we create will be the precompile proc if we need one
167167
this_is_the_precompile_proc = precompile_required && !identified_precompile_proc
@@ -281,7 +281,7 @@ function execute_testrun(
281281

282282
@assert length(profiles) == 1 "Currently one must pass one test profile"
283283

284-
@debug "Creating new test run"
284+
@info "Creating new test run"
285285

286286
testrun_msg_queue = Channel{Any}(Inf)
287287
our_procs = nothing
@@ -505,7 +505,7 @@ function execute_testrun(
505505
end
506506

507507
if test_process_to_steal_from === nothing
508-
@debug "Nothing to steal for $(test_process.id), returning to pool ($(msg.msg.event): $(msg.msg.testitemid))."
508+
@info "Nothing to steal for $(test_process.id), returning to pool ($(msg.msg.event): $(msg.msg.testitemid))."
509509
put!(controller.msg_channel, (event=:return_to_pool, testprocess=test_process))
510510
else
511511

@@ -517,7 +517,7 @@ function execute_testrun(
517517

518518
testitem_ids_to_steal = testitem_ids_from_which_we_steal[steal_range]
519519

520-
@debug "Stealing $(length(testitem_ids_to_steal)) test items from $(test_process_to_steal_from.id) for $(test_process.id)."
520+
@info "Stealing $(length(testitem_ids_to_steal)) test items from $(test_process_to_steal_from.id) for $(test_process.id)."
521521

522522
deleteat!(testitem_ids_from_which_we_steal, steal_range)
523523

0 commit comments

Comments
 (0)