mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-15 05:04:15 +01:00
Revamp resource logging.
This commit is contained in:
parent
08519396a0
commit
9098b5b3b3
11 changed files with 1051 additions and 148 deletions
|
|
@ -8,6 +8,7 @@ using OtterGui;
|
|||
using OtterGui.Classes;
|
||||
using OtterGui.Filesystem;
|
||||
using OtterGui.Widgets;
|
||||
using Penumbra.GameData.Enums;
|
||||
using Penumbra.Import;
|
||||
using Penumbra.Mods;
|
||||
using Penumbra.UI;
|
||||
|
|
@ -49,9 +50,15 @@ public partial class Configuration : IPluginConfiguration
|
|||
|
||||
public int TutorialStep { get; set; } = 0;
|
||||
|
||||
public bool EnableFullResourceLogging { get; set; } = false;
|
||||
public bool EnableResourceLogging { get; set; } = false;
|
||||
public string ResourceLoggingFilter { get; set; } = string.Empty;
|
||||
public bool EnableResourceWatcher { get; set; } = false;
|
||||
public int MaxResourceWatcherRecords { get; set; } = ResourceWatcher.DefaultMaxEntries;
|
||||
|
||||
public ResourceTypeFlag ResourceWatcherResourceTypes { get; set; } = ResourceExtensions.AllResourceTypes;
|
||||
public ResourceCategoryFlag ResourceWatcherResourceCategories { get; set; } = ResourceExtensions.AllResourceCategories;
|
||||
public ResourceWatcher.RecordType ResourceWatcherRecordTypes { get; set; } = ResourceWatcher.AllRecords;
|
||||
|
||||
|
||||
[JsonConverter( typeof( SortModeConverter ) )]
|
||||
[JsonProperty( Order = int.MaxValue )]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue