diff options
author | Justin Clarke Casey | 2009-05-07 14:23:26 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2009-05-07 14:23:26 +0000 |
commit | 48c2e7796f9bdfdfdcd71c33ac209a3ca7847642 (patch) | |
tree | 1f65a273107062f4812d81bc8e4786550a8c9535 /OpenSim/Framework/Communications | |
parent | * Consistently used dashed uuid format for mysql region data, as is done for ... (diff) | |
download | opensim-SC_OLD-48c2e7796f9bdfdfdcd71c33ac209a3ca7847642.zip opensim-SC_OLD-48c2e7796f9bdfdfdcd71c33ac209a3ca7847642.tar.gz opensim-SC_OLD-48c2e7796f9bdfdfdcd71c33ac209a3ca7847642.tar.bz2 opensim-SC_OLD-48c2e7796f9bdfdfdcd71c33ac209a3ca7847642.tar.xz |
* minor: Quieten down temporary profile resolver to only log when it's actually dealing with a temporary profile
Diffstat (limited to 'OpenSim/Framework/Communications')
-rw-r--r-- | OpenSim/Framework/Communications/Osp/OspResolver.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Communications/Osp/OspResolver.cs b/OpenSim/Framework/Communications/Osp/OspResolver.cs index 579b3df..55978b2 100644 --- a/OpenSim/Framework/Communications/Osp/OspResolver.cs +++ b/OpenSim/Framework/Communications/Osp/OspResolver.cs | |||
@@ -89,11 +89,11 @@ namespace OpenSim.Framework.Communications.Osp | |||
89 | /// is returned. | 89 | /// is returned. |
90 | /// </returns> | 90 | /// </returns> |
91 | public static UUID ResolveOspa(string ospa, CommunicationsManager commsManager) | 91 | public static UUID ResolveOspa(string ospa, CommunicationsManager commsManager) |
92 | { | 92 | { |
93 | m_log.DebugFormat("[OSP RESOLVER]: Resolving {0}", ospa); | ||
94 | |||
95 | if (!ospa.StartsWith(OSPA_PREFIX)) | 93 | if (!ospa.StartsWith(OSPA_PREFIX)) |
96 | return UUID.Zero; | 94 | return UUID.Zero; |
95 | |||
96 | m_log.DebugFormat("[OSP RESOLVER]: Resolving {0}", ospa); | ||
97 | 97 | ||
98 | string ospaMeat = ospa.Substring(OSPA_PREFIX.Length); | 98 | string ospaMeat = ospa.Substring(OSPA_PREFIX.Length); |
99 | string[] ospaTuples = ospaMeat.Split(OSPA_TUPLE_SEPARATOR_ARRAY); | 99 | string[] ospaTuples = ospaMeat.Split(OSPA_TUPLE_SEPARATOR_ARRAY); |