@@ -135,11 +135,6 @@ public static async Task<Worker> CreateWorkerAsync(
135
135
ConnectionParameters connectionParameters ,
136
136
ILogDispatcher logger , Vector3 origin )
137
137
{
138
- // TODO: Remove when UTY-1578 is fixed.
139
- #if UNITY_STANDALONE_LINUX
140
- connectionParameters . EnableProtocolLoggingAtStartup = false ;
141
- Debug . LogWarning ( "Automatically disabling protocol logging on Linux workers to prevent crashes." ) ;
142
- #endif
143
138
using ( var connectionFuture =
144
139
Connection . ConnectAsync ( config . ReceptionistHost , config . ReceptionistPort , config . WorkerId ,
145
140
connectionParameters ) )
@@ -168,11 +163,6 @@ public static async Task<Worker> CreateWorkerAsync(
168
163
ConnectionParameters connectionParameters ,
169
164
ILogDispatcher logger , Vector3 origin )
170
165
{
171
- // TODO: Remove when UTY-1578 is fixed.
172
- #if UNITY_STANDALONE_LINUX
173
- connectionParameters . EnableProtocolLoggingAtStartup = false ;
174
- Debug . LogWarning ( "Automatically disabling protocol logging on Linux workers to prevent crashes." ) ;
175
- #endif
176
166
using ( var locator = new Locator ( parameters . LocatorHost , parameters . LocatorParameters ) )
177
167
{
178
168
var deploymentList = await GetDeploymentList ( locator ) ;
@@ -211,11 +201,6 @@ public static async Task<Worker> CreateWorkerAsync(
211
201
ConnectionParameters connectionParameters ,
212
202
ILogDispatcher logger , Vector3 origin )
213
203
{
214
- // TODO: Remove when UTY-1578 is fixed.
215
- #if UNITY_STANDALONE_LINUX
216
- connectionParameters . EnableProtocolLoggingAtStartup = false ;
217
- Debug . LogWarning ( "Automatically disabling protocol logging on Linux workers to prevent crashes." ) ;
218
- #endif
219
204
using ( var locator = new AlphaLocator ( parameters . LocatorHost , parameters . LocatorParameters ) )
220
205
{
221
206
using ( var connectionFuture = locator . ConnectAsync ( connectionParameters ) )
0 commit comments