Skip to content

Commit a2ae817

Browse files
committed
1 parent b2814ae commit a2ae817

File tree

3 files changed

+566
-555
lines changed

3 files changed

+566
-555
lines changed

Assets/Scripts/Editor/BuildScript.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ namespace UnityBuilderAction
1919
public static class BuildScript
2020
{
2121
private static readonly string Eol = Environment.NewLine;
22-
private const bool LogVerboseBatchMode = true;
23-
private const bool LogVerboseNonBatchMode = false;
22+
private static bool LogVerboseBatchMode = true;
23+
private static bool LogVerboseInEditor = false;
2424

2525
private static readonly string[] Secrets =
2626
{ "androidKeystorePass", "androidKeyaliasName", "androidKeyaliasPass" };
@@ -337,7 +337,7 @@ private static void LogVerbose(string message)
337337
}
338338
else
339339
{
340-
if (LogVerboseNonBatchMode)
340+
if (LogVerboseInEditor)
341341
{
342342
Debug.Log(message);
343343
}

0 commit comments

Comments
 (0)