Skip to content

Commit

Permalink
fix: Added processing thread reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
TwoTenPvP committed Jan 14, 2020
1 parent bda863e commit 8abd37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ruffles/Core/RuffleSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ public bool Start()
_threads[i].Start();
}

if (Logging.CurrentLogLevel <= LogLevel.Info) Logging.LogInfo("Started " + (Config.LogicThreads + Config.SocketThreads) + " threads");
if (Logging.CurrentLogLevel <= LogLevel.Info) Logging.LogInfo("Started " + (Config.LogicThreads + Config.SocketThreads + Config.ProcessingThreads) + " threads");

return true;
}
Expand Down

0 comments on commit 8abd37c

Please sign in to comment.