From fc0670c2e978e29863bdf79816db8f96e025a2ff Mon Sep 17 00:00:00 2001 From: jonny Date: Wed, 18 Dec 2024 17:36:06 +0900 Subject: [PATCH] log level down --- nekoyume/Assets/_Scripts/ApiClient/IAPServiceManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nekoyume/Assets/_Scripts/ApiClient/IAPServiceManager.cs b/nekoyume/Assets/_Scripts/ApiClient/IAPServiceManager.cs index f0220a3b10..a13f347eda 100644 --- a/nekoyume/Assets/_Scripts/ApiClient/IAPServiceManager.cs +++ b/nekoyume/Assets/_Scripts/ApiClient/IAPServiceManager.cs @@ -45,13 +45,13 @@ public static string GetPopupTitleText(this InAppPurchaseServiceClient.ProductSc { if (!DateTime.TryParse(product.OpenTimestamp, out var openDate)) { - NcDebug.LogError($"Invalid OpenTimestamp: {product.OpenTimestamp}"); + NcDebug.LogWarning($"Invalid OpenTimestamp: {product.OpenTimestamp}"); return L10nManager.Localize($"MOBILE_SHOP_PRODUCT_{product.GetCode()}_POPUP_TITLE"); } if (!DateTime.TryParse(product.CloseTimestamp, out var closeDate)) { - NcDebug.LogError($"Invalid CloseTimestamp: {product.CloseTimestamp}"); + NcDebug.LogWarning($"Invalid CloseTimestamp: {product.CloseTimestamp}"); return L10nManager.Localize($"MOBILE_SHOP_PRODUCT_{product.GetCode()}_POPUP_TITLE"); } return L10nManager.Localize($"MOBILE_SHOP_PRODUCT_{product.GetCode()}_POPUP_TITLE", openDate.ToString("MM/dd"),closeDate.ToString("MM/dd"));