diff --git a/Assets/PerfectWorld/Scripts/Addressable/AddressableManager.cs b/Assets/PerfectWorld/Scripts/Addressable/AddressableManager.cs index 9266651585..3fbc517244 100644 --- a/Assets/PerfectWorld/Scripts/Addressable/AddressableManager.cs +++ b/Assets/PerfectWorld/Scripts/Addressable/AddressableManager.cs @@ -53,12 +53,6 @@ namespace BrewMonster.Scripts return _initializationTcs.Task; } - protected override void Awake() - { - Debug.Log($"[Cuong] AddressableManager: Awake | id={GetInstanceID()} frame={Time.frameCount}"); - base.Awake(); - } - protected override void Initialize() { base.Initialize(); @@ -69,19 +63,16 @@ namespace BrewMonster.Scripts async UniTaskVoid StartAddressablesInitAsync() { - Debug.Log("[Cuong] AddressableManager: Đang InitializeAsync Addressables..."); try { await AddressablesInitService.EnsureInitializedAsync(); _isInitialized = true; _initializationTcs.TrySetResult(); BMLogger.Log("AddressableManager: Initialized"); - Debug.Log("[Cuong] AddressableManager: InitializeAsync xong — sẵn sàng load asset."); } catch (Exception e) { BMLogger.LogError($"AddressableManager: Failed to initialize: {e.Message}"); - Debug.LogError($"[Cuong] AddressableManager: InitializeAsync thất bại — {e.Message}"); } } diff --git a/Assets/PerfectWorld/Scripts/UI/MiniMap/CDlgMiniMap.cs b/Assets/PerfectWorld/Scripts/UI/MiniMap/CDlgMiniMap.cs index 377d1a5948..6a73d1d543 100644 --- a/Assets/PerfectWorld/Scripts/UI/MiniMap/CDlgMiniMap.cs +++ b/Assets/PerfectWorld/Scripts/UI/MiniMap/CDlgMiniMap.cs @@ -190,7 +190,7 @@ namespace PerfectWorld.UI.MiniMap if (_txtSystemTime != null) _txtSystemTime.text = strText; - // BMLogger.Log($"[Cuong] {strText}"); + //Todo: [Cuong] Show time } ///