コード例 #1
0
 public void DumpDebugInfo()
 {
     if (PythonEngine.options.EngineDebug)
     {
         PerfTrack.DumpStats();
         try {
             OutputGenerator.DumpSnippets();
         } catch (NotSupportedException) { } //!!! usually not important info...
     }
 }
コード例 #2
0
        public void DumpDebugInfo()
        {
#if FULL
            if (ScriptDomainManager.Options.EngineDebug)
            {
                PerfTrack.DumpStats();
                try {
                    ScriptDomainManager.CurrentManager.Snippets.Dump();
                } catch (NotSupportedException) { } // usually not important info...
            }
#endif
        }