Skip to content
This repository has been archived by the owner on Jan 18, 2022. It is now read-only.

Commit

Permalink
use Unity logging types
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiebrynes7 committed Jun 13, 2019
1 parent 7f5d217 commit a5fb29a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ public class ForwardingDispatcher : ILogDispatcher
/// Constructor for the Forwarding Dispatcher
/// </summary>
/// <param name="minimumLogLevel">The minimum log level to forward logs to the SpatialOS runtime.</param>
public ForwardingDispatcher(LogLevel minimumLogLevel = LogLevel.Warn)
public ForwardingDispatcher(LogType minimumLogLevel = LogType.Warning)
{
this.minimumLogLevel = minimumLogLevel;
this.minimumLogLevel = LogTypeMapping[minimumLogLevel];
Application.logMessageReceived += LogCallback;
}

Expand Down

0 comments on commit a5fb29a

Please sign in to comment.