Example #1
0
 // Invoke the detailed logger and output something if it's enabled.
 public void DetailLog(string msg, params Object[] args)
 {
     PhysicsLogging.Write(msg, args);
     // Add the Flush() if debugging crashes. Gets all the messages written out.
     if (m_physicsLoggingDoFlush)
     {
         PhysicsLogging.Flush();
     }
 }
 // Invoke the detailed logger and output something if it's enabled.
 public void DetailLog(string msg, params Object[] args)
 {
     PhysicsLogging.Write(msg, args);
 }