Skip to content

Commit

Permalink
Update BcpLogger.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
qcapen committed Jun 18, 2019
1 parent 9a71e1b commit 984b96c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Assets/BCP/Scripts/BcpLogger.cs
Expand Up @@ -7,8 +7,8 @@
/// <summary>
/// This singleton class provides a timestamped log file that will only be available in debug builds.
/// </summary>
public class BcpLogger : MonoBehaviour {

public class BcpLogger : MonoBehaviour
{
/// <summary>
/// The log file name.
/// </summary>
Expand Down Expand Up @@ -118,7 +118,7 @@ public static void Trace(string Message)
if (BcpLogger.Instance.Enabled)
BcpLogger.Instance.Write(Message);
else
// Fallback if the debugging system hasn't been initialized yet.
// Fall back if the debugging system hasn't been initialized yet.
UnityEngine.Debug.Log(Message);
}

Expand Down

0 comments on commit 984b96c

Please sign in to comment.