Skip to content

Commit 32f513f

Browse files
committed
Merge branch 'feat/bridge-stability' of https://github.com/dsarno/unity-mcp into feat/bridge-stability
* 'feat/bridge-stability' of https://github.com/dsarno/unity-mcp: Bridge logs: add bold blue UNITY-MCP prefix; gate PortManager logs behind Debug Logs toggle; improve Python and UV detection on Windows (flex versions, where.exe/Path scan); tidy installer messages
2 parents 9da9739 + 4c72309 commit 32f513f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

UnityMcpBridge/Editor/UnityMcpBridge.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public static void Start()
128128
// Don't restart if already running on a working port
129129
if (isRunning && listener != null)
130130
{
131-
Debug.Log($"UnityMcpBridge already running on port {currentUnityPort}");
131+
Debug.Log($"<b><color=#2EA3FF>UNITY-MCP</color></b>: UnityMcpBridge already running on port {currentUnityPort}");
132132
return;
133133
}
134134

@@ -194,7 +194,7 @@ public static void Start()
194194

195195
isRunning = true;
196196
isAutoConnectMode = false;
197-
Debug.Log($"UnityMcpBridge started on port {currentUnityPort}.");
197+
Debug.Log($"<b><color=#2EA3FF>UNITY-MCP</color></b>: UnityMcpBridge started on port {currentUnityPort}.");
198198
Task.Run(ListenerLoop);
199199
EditorApplication.update += ProcessCommands;
200200
// Write initial heartbeat immediately
@@ -226,7 +226,7 @@ public static void Stop()
226226
listener?.Stop();
227227
listener = null;
228228
EditorApplication.update -= ProcessCommands;
229-
Debug.Log("UnityMcpBridge stopped.");
229+
Debug.Log("<b><color=#2EA3FF>UNITY-MCP</color></b>: UnityMcpBridge stopped.");
230230
}
231231
catch (Exception ex)
232232
{

0 commit comments

Comments
 (0)