Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit abd2566

Browse files
authored
Merge pull request #201 from github-for-unity/fixes/log-messages-past-tense
Fix console message test to be in past tense
2 parents c123b5c + 45d96d3 commit abd2566

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/UnityExtension/Assets/Editor/GitHub.Unity/EntryPoint.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private static void Initialize()
3737

3838
if (ApplicationCache.Instance.FirstRun)
3939
{
40-
Debug.Log("Initializing GitHub for Unity version " + ApplicationInfo.Version);
40+
Debug.Log("Initialized GitHub for Unity version " + ApplicationInfo.Version);
4141

4242
var oldLogPath = logPath.Parent.Combine(logPath.FileNameWithoutExtension + "-old" + logPath.ExtensionWithDot);
4343
try
@@ -53,7 +53,7 @@ private static void Initialize()
5353
Logging.Error(ex, "Error rotating log files");
5454
}
5555

56-
Debug.Log("Initializing GitHub for Unity log file: " + logPath);
56+
Debug.Log("Initialized GitHub for Unity log file: " + logPath);
5757
}
5858
Logging.LogAdapter = new FileLogAdapter(logPath);
5959
Logging.Info("Initializing GitHub for Unity version " + ApplicationInfo.Version);

0 commit comments

Comments
 (0)