diff --git a/src/plugins/select/cons_res/job_test.c b/src/plugins/select/cons_res/job_test.c
index 64b80af96cacfb0265bb8e0d9629174928e18f12..ea624b2064f215b23301558c43adb0e91b0c380a 100644
--- a/src/plugins/select/cons_res/job_test.c
+++ b/src/plugins/select/cons_res/job_test.c
@@ -1584,11 +1584,12 @@ static int _eval_nodes_topo(struct job_record *job_ptr, bitstr_t *bitmap,
 				node_names = bitmap2node_name(
 						switches_bitmap[i]);
 			}
-			debug("switch=%s nodes=%u:%s required:%u speed:%u",
-			      switch_record_table[i].name,
-			      switches_node_cnt[i], node_names,
-			      switches_required[i],
-			      switch_record_table[i].link_speed);
+			info("switch=%s level=%d nodes=%u:%s required:%u speed:%u",
+			     switch_record_table[i].name,
+			     switch_record_table[i].level,
+			     switches_node_cnt[i], node_names,
+			     switches_required[i],
+			     switch_record_table[i].link_speed);
 			xfree(node_names);
 		}
 	}
diff --git a/src/plugins/select/linear/select_linear.c b/src/plugins/select/linear/select_linear.c
index a1c9f9313b4e08128e17f60e6561b6e1b60a7b6f..9111d695e4be55bb54f90824e287dfd256925a04 100644
--- a/src/plugins/select/linear/select_linear.c
+++ b/src/plugins/select/linear/select_linear.c
@@ -3415,11 +3415,12 @@ extern bitstr_t * select_p_resv_test(resv_desc_msg_t *resv_desc_ptr,
 		char *node_names = NULL;
 		if (switches_node_cnt[i])
 			node_names = bitmap2node_name(switches_bitmap[i]);
-		debug("switch=%s nodes=%u:%s required:%u speed=%u",
-		      switch_record_table[i].name,
-		      switches_node_cnt[i], node_names,
-		      switches_required[i],
-		      switch_record_table[i].link_speed);
+		info("switch=%s level=%d nodes=%u:%s required:%u speed=%u",
+		     switch_record_table[i].name,
+		     switch_record_table[i].level,
+		     switches_node_cnt[i], node_names,
+		     switches_required[i],
+		     switch_record_table[i].link_speed);
 		xfree(node_names);
 	}
 #endif