Disable default logging, remove log message

This commit is contained in:
MidoriKami 2026-01-11 18:03:27 -08:00
parent c1df0da9be
commit 9dd08c3f18

View file

@ -21,7 +21,7 @@ internal unsafe class AgentVirtualTable : IDisposable
// Copying extra entries is not problematic, and is considered safe.
private const int VirtualTableEntryCount = 60;
private const bool EnableLogging = true;
private const bool EnableLogging = false;
private static readonly ModuleLog Log = new("AgentVT");
@ -60,8 +60,6 @@ internal unsafe class AgentVirtualTable : IDisposable
/// <param name="lifecycleService">Reference to AgentLifecycle service to callback and invoke listeners.</param>
internal AgentVirtualTable(AgentInterface* agent, AgentId agentId, AgentLifecycle lifecycleService)
{
Log.Debug($"Initializing AgentVirtualTable for {agentId}, Address: {(nint)agent:X}");
this.agentInterface = agent;
this.agentId = agentId;
this.lifecycleService = lifecycleService;