public void Connect(string connection)
 {
     Log("Connect {0}", connection);
     try
     {
         _BaseInstrument.Connect(connection);
     }
     catch (Exception e)
     {
         Log("Connect threw {0}", e.Message);
         throw;
     }
 }