public void Run(IIntegrationResult result)
 {
     try
     {
         var room = new CampfireRoom(AccountName, AuthToken, RoomId, IsHttps);
         room.Post(new IntegrationMessage(result).ToString());
     }
     catch (Exception e)
     {
         Log.Warning("[campfirepublisher] Error publishing to Campfire: " + e.Message);
     }
 }
 public void Run(IIntegrationResult result)
 {
     try
     {
         var room = new CampfireRoom(AccountName, AuthToken, RoomId, IsHttps);
         room.Post(new IntegrationMessage(result).ToString());
     }
     catch (Exception e)
     {
         Log.Warning("[campfirepublisher] Error publishing to Campfire: " + e.Message);
     }
 }