Skip to content

Commit fa52b6e

Browse files
committed
Change debug log format
1 parent 6a81821 commit fa52b6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Runtime/NavigationStack.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ private void Update()
125125
catch
126126
{
127127
#if UNITY_EDITOR || DEVELOPMENT_BUILD
128-
Debug.LogWarning($"[NavigationStack]: Input button '{legacyBackNavigationInput}' is not setup.\nDefine the input in the Input Manager settings accessed from the menu: Edit > Project Settings");
128+
Debug.LogWarning($"[NavigationStack] Input button '{legacyBackNavigationInput}' is not setup.\nDefine the input in the Input Manager settings accessed from the menu: Edit > Project Settings");
129129
#endif
130130
}
131131
}

Runtime/ScrollWithInput.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ private float GetAxis(string inputName)
135135
catch
136136
{
137137
#if UNITY_EDITOR || DEVELOPMENT_BUILD
138-
Debug.LogWarning($"[ScrollWithInput]: Input axis '{inputName}' is not setup.\nDefine the input in the Input Manager settings accessed from the menu: Edit > Project Settings");
138+
Debug.LogWarning($"[ScrollWithInput] Input axis '{inputName}' is not setup.\nDefine the input in the Input Manager settings accessed from the menu: Edit > Project Settings");
139139
#endif
140140
}
141141

0 commit comments

Comments
 (0)