* minor: Quieten down temporary profile resolver to only log when it's actually dealing with a temporary profile

0.6.5-rc1
Justin Clarke Casey 2009-05-07 14:23:26 +00:00
parent 2284c8509f
commit 48c2e7796f
1 changed files with 3 additions and 3 deletions

View File

@ -89,11 +89,11 @@ namespace OpenSim.Framework.Communications.Osp
/// is returned.
/// </returns>
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);