Example #1
0
 public List <string> DiscoSwitches()
 {
     try
     {
         controller.DiscoSwitches();
         return(new List <string>()
         {
             ""
         });
     }
     catch (Exception e)
     {
         logger.Log("Got exception in DiscoSwitches: " + e);
         return(new List <string>()
         {
             e.Message
         });
     }
 }