From fdefc3d5677bfc18fd6a8a241eb625ce7123899c Mon Sep 17 00:00:00 2001
From: Sinai <49360850+sinai-dev@users.noreply.github.com>
Date: Mon, 21 Feb 2022 01:46:13 +1100
Subject: [PATCH] Include runtime context in "initialized" log.

---
 src/ExplorerCore.cs | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/ExplorerCore.cs b/src/ExplorerCore.cs
index f45774d..d8f6c6a 100644
--- a/src/ExplorerCore.cs
+++ b/src/ExplorerCore.cs
@@ -46,6 +46,7 @@ namespace UnityExplorer
             ConfigManager.Init(Loader.ConfigHandler);
             UERuntimeHelper.Init();
             ExplorerBehaviour.Setup();
+            UnityCrashPrevention.Init();
 
             UniverseLib.Universe.Init(ConfigManager.Startup_Delay_Time.Value, LateInit, Log, new()
             {
@@ -68,7 +69,7 @@ namespace UnityExplorer
 
             UIManager.InitUI();
 
-            Log($"{NAME} {VERSION} initialized.");
+            Log($"{NAME} {VERSION} initialized for {UniverseLib.Universe.Context}.");
 
             //InspectorManager.Inspect(typeof(Tests.TestClass));
         }