minor: remove mono compiler warnings

This commit is contained in:
Justin Clarke Casey
2008-11-17 16:22:21 +00:00
parent 558704be8b
commit dcfd343a1e
3 changed files with 21 additions and 21 deletions

View File

@@ -547,7 +547,7 @@ namespace OpenSim.Grid.MessagingServer
else
m_log.InfoFormat("[SERVER] Registered with {0}", srv);
}
catch (Exception ex)
catch
{
m_log.ErrorFormat("Unable to connect to server {0}. Server not running?", srv);
success = false;
@@ -593,9 +593,9 @@ namespace OpenSim.Grid.MessagingServer
if(!UserRespData.ContainsKey("responsestring"))
success = false;
}
catch (Exception ex)
catch
{
m_log.Error("Unable to connect to grid. User server not running?");
m_log.ErrorFormat("Unable to connect to server {0}. Server not running?", srv);
success = false;
}
}