Remove unnecessary logging

This commit is contained in:
Ben Olden-Cooligan 2024-04-13 20:20:17 -07:00
parent cf38269af6
commit 15a576874c

View File

@ -28,10 +28,8 @@ public abstract class ApplicationLifecycle
protected virtual void HandleSingleInstance()
{
// Only start one instance if configured for SingleInstance
Log.Debug("HandleSingleInstance");
if (_config.Get(c => c.SingleInstance))
{
Log.Debug("SingleInstance enabled");
if (!_processCoordinator.TryTakeInstanceLock())
{
Log.Debug("Failed to get SingleInstance lock");