コード例 #1
0
        internal EngineInfo(string hostname, int workingSetMin, int workingSetMax, EngineLogLevel performanceLogLevel, EngineLogLevel qixPerformanceLogLevel, EngineLogLevel sessionLogLevel)
        {
            this.Hostname      = hostname;
            this.WorkingSetMin = workingSetMin;
            this.WorkingSetMax = workingSetMax;

            this.PerformanceLogLevel    = performanceLogLevel;
            this.QIXPerformanceLogLevel = qixPerformanceLogLevel;
            this.SessionLogLevel        = sessionLogLevel;
        }
コード例 #2
0
ファイル: EngineLog.cs プロジェクト: Bankst/DragonFiesta
 public static void Write(EngineLogLevel type, string message, params object[] args)
 {
     Instance.Write(LogType.EngineLog, type, message, args);
 }