From b56f712c71e6f0287afc400cb1e4e8952082211b Mon Sep 17 00:00:00 2001 From: Milan Hanajik Date: Wed, 5 Apr 2023 16:44:15 +0200 Subject: [PATCH] Clean-up --- TBF/Rig/StateMachine.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/TBF/Rig/StateMachine.cs b/TBF/Rig/StateMachine.cs index 54154a8c6..517f7c06c 100644 --- a/TBF/Rig/StateMachine.cs +++ b/TBF/Rig/StateMachine.cs @@ -36,7 +36,6 @@ namespace TBF.Rig public static class StateMachine { private static readonly ILog log = LogManager.GetLogger(typeof(StateMachine)); - private static readonly ILog wlog = LogManager.GetLogger(typeof(StateMachine)); /// Private devices and components static IList components; /// list of all components @@ -782,7 +781,6 @@ namespace TBF.Rig MachineState = MachineState.Running; startDateTime = DateTime.Now; CycleStartTimeStamp = startDateTime; /// Do not leave CycleStartTimeStamp uninitialized - wlog.InfoFormat(" currentTime = {0}s startDateTime = {1}", currentTimeSec.ToString(), startDateTime.ToString()); /// Run all devices for the first time foreach (var device in devices) device.RunDeviceBefore();