 2ae5d42e4d
			
		
	
	2ae5d42e4d
	
	
	
		
			
			* test some refactoring for cachedplayer * rework logging * fix saving of log level --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
		
			
				
	
	
		
			12 lines
		
	
	
		
			452 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			452 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Dalamud.Plugin;
 | |
| using MareSynchronos.MareConfiguration.Configurations;
 | |
| using Microsoft.Extensions.Logging;
 | |
| 
 | |
| namespace MareSynchronos.MareConfiguration;
 | |
| 
 | |
| public class NotesConfigService : ConfigurationServiceBase<UidNotesConfig>
 | |
| {
 | |
|     public const string ConfigName = "notes.json";
 | |
|     protected override string ConfigurationName => ConfigName;
 | |
|     public NotesConfigService(DalamudPluginInterface pluginInterface) : base(pluginInterface) { }
 | |
| } |