ManeuverNodeSplitter.INodeSplitter.DebugLog C# (CSharp) Method

DebugLog() protected method

protected DebugLog ( string format ) : void
format string
return void
        protected void DebugLog(string format, params object[] args)
        {
            #if DEBUG
            Debug.Log(string.Format(format, args));
            #endif
        }