Skip to content

Commit a66bb07

Browse files
committed
Fix vetting test
1 parent b6cea30 commit a66bb07

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

com.unity.netcode.gameobjects/Runtime/Logging/ContextualLogger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ internal DisposableContext AddDisposableInfo(string key, object value)
8989
[Conditional(k_CompilationCondition)]
9090
internal void RemoveInfo(string key)
9191
{
92-
m_LoggerContext.ClearInfo(key);
92+
m_LoggerContext.RemoveInfo(key);
9393
}
9494

9595
[HideInCallstack]

com.unity.netcode.gameobjects/Runtime/Logging/LogContext/GenericContext.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Collections.Generic;
3-
using UnityEngine;
43

54
namespace Unity.Netcode.Logging
65
{

0 commit comments

Comments
 (0)