From 30c479db949735dbaabf0e4a9e3ac780fad97e71 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Thu, 2 Sep 2021 21:56:23 +0100 Subject: [PATCH] remove a noisy stack trace from LAND CONNECTOR log --- OpenSim/Services/Connectors/Land/LandServicesConnector.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/OpenSim/Services/Connectors/Land/LandServicesConnector.cs b/OpenSim/Services/Connectors/Land/LandServicesConnector.cs index 49ba51b9b2..a1122a2595 100644 --- a/OpenSim/Services/Connectors/Land/LandServicesConnector.cs +++ b/OpenSim/Services/Connectors/Land/LandServicesConnector.cs @@ -134,8 +134,7 @@ namespace OpenSim.Services.Connectors } catch (Exception e) { - m_log.ErrorFormat( - "[LAND CONNECTOR]: Couldn't contact region {0}: {1} {2}", regionHandle, e.Message, e.StackTrace); + m_log.ErrorFormat("[LAND CONNECTOR]: Couldn't contact region {0}: {1}", regionHandle, e.Message); } return landData;