コード例 #1
0
 private void LogPacket(ETemiLogItems index, string packet)
 {
     if (logging == ETemiLogging.All)
     {
         LogEvent(index, packet);
     }
 }
コード例 #2
0
 private void LogEvent(ETemiLogItems index, string str)
 {
     if (logging != ETemiLogging.None)
     {
         logger.Log((int)index, str);
     }
 }