We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 493d9ba commit f671bbcCopy full SHA for f671bbc
MCPForUnity/Editor/Migrations/LegacyServerSrcMigration.cs
@@ -44,6 +44,14 @@ private static void RunMigrationIfNeeded()
44
45
if (summary.FailureCount > 0 || summary.SuccessCount == 0)
46
{
47
+ if (summary.Messages != null && summary.Messages.Count > 0)
48
+ {
49
+ McpLog.Debug("Legacy configuration migration details:");
50
+ foreach (var message in summary.Messages)
51
52
+ McpLog.Debug($" {message}");
53
+ }
54
55
McpLog.Warn($"Legacy configuration migration incomplete ({summary.GetSummaryMessage()}). Will retry next session.");
56
return;
57
}
0 commit comments