mirror of
https://github.com/xivdev/Penumbra.git
synced 2026-01-03 06:13:45 +01:00
Changed some pluginLog outputs from VRB to DBG
This commit is contained in:
parent
a1504046c2
commit
1bf144e1f5
3 changed files with 7 additions and 7 deletions
|
|
@ -37,7 +37,7 @@ namespace Penumbra.Mods
|
|||
|
||||
public Mod.Mod GetMod( ModData mod )
|
||||
{
|
||||
if( Cache != null && Cache.AvailableMods.TryGetValue( mod.BasePath.Name, out var ret ))
|
||||
if( Cache != null && Cache.AvailableMods.TryGetValue( mod.BasePath.Name, out var ret ) )
|
||||
{
|
||||
return ret;
|
||||
}
|
||||
|
|
@ -129,7 +129,7 @@ namespace Penumbra.Mods
|
|||
|
||||
public void CalculateEffectiveFileList( DirectoryInfo modDir, bool withMetaManipulations, bool activeCollection )
|
||||
{
|
||||
PluginLog.Verbose( "Recalculating effective file list for {CollectionName} [{WithMetaManipulations}] [{IsActiveCollection}]", Name,
|
||||
PluginLog.Debug( "Recalculating effective file list for {CollectionName} [{WithMetaManipulations}] [{IsActiveCollection}]", Name,
|
||||
withMetaManipulations, activeCollection );
|
||||
Cache ??= new ModCollectionCache( Name, modDir );
|
||||
UpdateSettings();
|
||||
|
|
|
|||
|
|
@ -109,7 +109,7 @@ namespace Penumbra.UI
|
|||
_visibleMods.Clear();
|
||||
_visibleFolders.Clear();
|
||||
|
||||
PluginLog.Verbose( "Resetting mod selector list..." );
|
||||
PluginLog.Debug( "Resetting mod selector list..." );
|
||||
if( !_modsInOrder.Any() )
|
||||
{
|
||||
foreach( var modData in _manager.StructuredMods.AllMods( _manager.Config.SortFoldersFirst ) )
|
||||
|
|
@ -125,7 +125,7 @@ namespace Penumbra.UI
|
|||
{
|
||||
_visibleMods.Clear();
|
||||
_visibleFolders.Clear();
|
||||
PluginLog.Verbose( "Resetting mod selector filters..." );
|
||||
PluginLog.Debug( "Resetting mod selector filters..." );
|
||||
foreach( var mod in _modsInOrder )
|
||||
{
|
||||
_visibleMods.Add( CheckFilters( mod ) );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue