From 48c2e7796f9bdfdfdcd71c33ac209a3ca7847642 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 7 May 2009 14:23:26 +0000 Subject: [PATCH] * minor: Quieten down temporary profile resolver to only log when it's actually dealing with a temporary profile --- OpenSim/Framework/Communications/Osp/OspResolver.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/OpenSim/Framework/Communications/Osp/OspResolver.cs b/OpenSim/Framework/Communications/Osp/OspResolver.cs index 579b3df499..55978b2fa9 100644 --- a/OpenSim/Framework/Communications/Osp/OspResolver.cs +++ b/OpenSim/Framework/Communications/Osp/OspResolver.cs @@ -89,11 +89,11 @@ namespace OpenSim.Framework.Communications.Osp /// is returned. /// public static UUID ResolveOspa(string ospa, CommunicationsManager commsManager) - { - m_log.DebugFormat("[OSP RESOLVER]: Resolving {0}", ospa); - + { if (!ospa.StartsWith(OSPA_PREFIX)) return UUID.Zero; + + m_log.DebugFormat("[OSP RESOLVER]: Resolving {0}", ospa); string ospaMeat = ospa.Substring(OSPA_PREFIX.Length); string[] ospaTuples = ospaMeat.Split(OSPA_TUPLE_SEPARATOR_ARRAY);