@@ -15,20 +15,12 @@ public static class ProfilerInfo
1515 // Operations
1616 public static MLAPIProfilerCounterValue < int > ConnectionsCounterValue =
1717 new MLAPIProfilerCounterValue < int > ( ProfilerCategory . Network , ProfilerConstants . NumberOfConnections . ToString ( ) ,
18- ProfilerMarkerDataUnit . Count , ProfilerCounterOptions . FlushOnEndOfFrame | Pro ) ;
18+ ProfilerMarkerDataUnit . Count , ProfilerCounterOptions . FlushOnEndOfFrame ) ;
1919
2020 public static MLAPIProfilerCounterValue < int > TickRateCounterValue =
2121 new MLAPIProfilerCounterValue < int > ( ProfilerCategory . Network , ProfilerConstants . ReceiveTickRate . ToString ( ) ,
2222 ProfilerMarkerDataUnit . Count , ProfilerCounterOptions . FlushOnEndOfFrame ) ;
2323
24- public static MLAPIProfilerCounterValue < int > TransportSendsCounterValue =
25- new MLAPIProfilerCounterValue < int > ( ProfilerCategory . Network , ProfilerConstants . NumberOfTransportSends . ToString ( ) ,
26- ProfilerMarkerDataUnit . Count , ProfilerCounterOptions . FlushOnEndOfFrame ) ;
27-
28- public static MLAPIProfilerCounterValue < int > TransportSendQueuesCounterValue =
29- new MLAPIProfilerCounterValue < int > ( ProfilerCategory . Network , ProfilerConstants . NumberOfTransportSendQueues . ToString ( ) ,
30- ProfilerMarkerDataUnit . Count , ProfilerCounterOptions . FlushOnEndOfFrame ) ;
31-
3224 //Messages
3325 public static MLAPIProfilerCounterValue < int > NamedMessagesCounterValue =
3426 new MLAPIProfilerCounterValue < int > ( ProfilerCategory . Network , ProfilerConstants . NumberOfNamedMessages . ToString ( ) ,
@@ -112,8 +104,6 @@ public static void EmitClientToProfilerStream(string targetName, TickType eventT
112104
113105 ConnectionsCounterValue . Value = 1 ;
114106 TickRateCounterValue . Value = 1 ;
115- TransportSendsCounterValue . Value = 1 ;
116- TransportSendQueuesCounterValue . Value = 1 ;
117107
118108 NamedMessagesCounterValue . Value = 1 ;
119109 UnnamedMessagesCounterValue . Value = 1 ;
0 commit comments