Skip to content
Snippets Groups Projects
Commit abd25664 authored by Andreia Gaita's avatar Andreia Gaita Committed by GitHub
Browse files

Merge pull request #201 from github-for-unity/fixes/log-messages-past-tense

Fix console message test to be in past tense
parents c123b5c1 45d96d3e
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ namespace GitHub.Unity
if (ApplicationCache.Instance.FirstRun)
{
Debug.Log("Initializing GitHub for Unity version " + ApplicationInfo.Version);
Debug.Log("Initialized GitHub for Unity version " + ApplicationInfo.Version);
var oldLogPath = logPath.Parent.Combine(logPath.FileNameWithoutExtension + "-old" + logPath.ExtensionWithDot);
try
......@@ -53,7 +53,7 @@ namespace GitHub.Unity
Logging.Error(ex, "Error rotating log files");
}
Debug.Log("Initializing GitHub for Unity log file: " + logPath);
Debug.Log("Initialized GitHub for Unity log file: " + logPath);
}
Logging.LogAdapter = new FileLogAdapter(logPath);
Logging.Info("Initializing GitHub for Unity version " + ApplicationInfo.Version);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment