diff options
author | Justin Clark-Casey (justincc) | 2013-05-21 22:26:15 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-05-21 22:26:15 +0100 |
commit | 06ab16889744ab3f3cef7d698b19408368711194 (patch) | |
tree | 22d11f3ea38be5adb15e89a6dcd1cabcb149b915 /OpenSim/Framework | |
parent | Fix compile failure from recent git master 434c3cf (diff) | |
download | opensim-SC-06ab16889744ab3f3cef7d698b19408368711194.zip opensim-SC-06ab16889744ab3f3cef7d698b19408368711194.tar.gz opensim-SC-06ab16889744ab3f3cef7d698b19408368711194.tar.bz2 opensim-SC-06ab16889744ab3f3cef7d698b19408368711194.tar.xz |
To further help with tracking down the apperance of too much "Unknown User" in chatlogs, etc. temporarily change each instance of this in OpenSimulator so we can identify where it's coming from
For instance, the "Unknown User" in Util.ParseUniversalUserIdenitifer becaomes "Unknown UserUPUUI (class initials + method initials)
This is to help with http://opensimulator.org/mantis/view.php?id=6625
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/Util.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index a3602e9..ada4e89 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -2136,7 +2136,7 @@ namespace OpenSim.Framework | |||
2136 | /// <param name="secret">the secret part</param> | 2136 | /// <param name="secret">the secret part</param> |
2137 | public static bool ParseUniversalUserIdentifier(string value, out UUID uuid, out string url, out string firstname, out string lastname, out string secret) | 2137 | public static bool ParseUniversalUserIdentifier(string value, out UUID uuid, out string url, out string firstname, out string lastname, out string secret) |
2138 | { | 2138 | { |
2139 | uuid = UUID.Zero; url = string.Empty; firstname = "Unknown"; lastname = "User"; secret = string.Empty; | 2139 | uuid = UUID.Zero; url = string.Empty; firstname = "Unknown"; lastname = "UserUPUUI"; secret = string.Empty; |
2140 | 2140 | ||
2141 | string[] parts = value.Split(';'); | 2141 | string[] parts = value.Split(';'); |
2142 | if (parts.Length >= 1) | 2142 | if (parts.Length >= 1) |