67: Add project type in message

This commit is contained in:
Tom Zhao 2025-01-30 15:19:15 +01:00
parent 6e31fca410
commit 3c8252d010

@ -222,7 +222,13 @@ public abstract class AbstractAdminIdeaPanel extends Panel {
long matchedCounter = (countMatched == null) ? 0L : countMatched;
String msg =
"Supervisor changed: matched/target -> " + matchedCounter + " / " + targetCounter;
"Supervisor changed: matched/target -> " +
matchedCounter +
" / " +
targetCounter +
" (" +
idea.getProjectType().getName() +
")";
if (matchedCounter > targetCounter) {
warn(msg);