recipe name filter
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
using System.Collections.Concurrent;
|
||||
using Serilog;
|
||||
using VisionBuilder.UI.Common;
|
||||
using VisionBuilder.UI.Common.Commands;
|
||||
using VisionBuilder.UI.Common.RecipeProcessing;
|
||||
@@ -25,8 +26,17 @@ public class IOCommanderModule:IVisionBuilderModule
|
||||
|
||||
public void InitializeModule()
|
||||
{
|
||||
_ioCommander = _factory.Create();
|
||||
_ioCommander.OnPinChanged += OnPinChanged;
|
||||
try
|
||||
{
|
||||
_ioCommander = _factory.Create();
|
||||
_ioCommander.OnPinChanged += OnPinChanged;
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Log.Warning("IOCommander did non load: {e}",e);
|
||||
_ioCommander= null;
|
||||
}
|
||||
|
||||
|
||||
if (_settings.ShowDebugView)_debugViewService.ShowDebugView();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user