mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +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
|
|
@ -127,7 +127,7 @@ namespace Penumbra.PlayerWatch
|
|||
|
||||
internal void Clear()
|
||||
{
|
||||
PluginLog.Verbose( "Clearing PlayerWatcher Store." );
|
||||
PluginLog.Debug( "Clearing PlayerWatcher Store." );
|
||||
_cancel = true;
|
||||
foreach( var kvp in _equip )
|
||||
{
|
||||
|
|
@ -139,7 +139,7 @@ namespace Penumbra.PlayerWatch
|
|||
|
||||
private static void TriggerEvents( IEnumerable< PlayerWatcher > watchers, Actor actor )
|
||||
{
|
||||
PluginLog.Verbose( "Triggering events for {ActorName} at 0x{Address:X16}.", actor.Name, actor.Address );
|
||||
PluginLog.Debug( "Triggering events for {ActorName} at {Address}.", actor.Name, actor.Address );
|
||||
foreach( var watcher in watchers.Where( w => w.Active ) )
|
||||
{
|
||||
watcher.Trigger( actor );
|
||||
|
|
@ -231,7 +231,7 @@ namespace Penumbra.PlayerWatch
|
|||
return;
|
||||
}
|
||||
|
||||
PluginLog.Verbose( "Comparing Gear for {ActorName}...", actor.Name );
|
||||
PluginLog.Verbose( "Comparing Gear for {ActorName} at {Address}...", actor.Name, actor.Address );
|
||||
if( !equip.Item1.CompareAndUpdate( actor ) )
|
||||
{
|
||||
TriggerEvents( equip.Item2, actor );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue