mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 20:33:40 +01:00
feat: add third party repo to troubleshooting
This commit is contained in:
parent
e6947e0cb8
commit
2d56947f56
1 changed files with 5 additions and 1 deletions
|
|
@ -1,5 +1,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Dalamud.Configuration;
|
||||
using Dalamud.Plugin;
|
||||
using Newtonsoft.Json;
|
||||
using Serilog;
|
||||
|
|
@ -17,6 +19,7 @@ namespace Dalamud
|
|||
public bool DoDalamudTest { get; set; }
|
||||
public bool DoPluginTest { get; set; }
|
||||
public bool InterfaceLoaded { get; set; }
|
||||
public List<ThirdRepoSetting> ThirdRepo { get; set; }
|
||||
}
|
||||
|
||||
public static void LogTroubleshooting(Dalamud dalamud, bool isInterfaceLoaded) {
|
||||
|
|
@ -28,7 +31,8 @@ namespace Dalamud
|
|||
Language = dalamud.StartInfo.Language.ToString(),
|
||||
DoDalamudTest = dalamud.Configuration.DoDalamudTest,
|
||||
DoPluginTest = dalamud.Configuration.DoPluginTest,
|
||||
InterfaceLoaded = isInterfaceLoaded
|
||||
InterfaceLoaded = isInterfaceLoaded,
|
||||
ThirdRepo = dalamud.Configuration.ThirdRepoList
|
||||
};
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue