diff options
author | Robert Adams | 2013-08-22 09:07:58 -0700 |
---|---|---|
committer | Robert Adams | 2013-09-11 09:12:10 -0700 |
commit | 67195618d580eb6cd848cf1e6462572ad2b2b118 (patch) | |
tree | 09b51cb8cd586942ad5fb7d3615b6a39ab4cf5c4 /OpenSim/Region/Physics/BulletSPlugin/BSScene.cs | |
parent | BulletSim: remove chatty debug message from previous commit. (diff) | |
download | opensim-SC-67195618d580eb6cd848cf1e6462572ad2b2b118.zip opensim-SC-67195618d580eb6cd848cf1e6462572ad2b2b118.tar.gz opensim-SC-67195618d580eb6cd848cf1e6462572ad2b2b118.tar.bz2 opensim-SC-67195618d580eb6cd848cf1e6462572ad2b2b118.tar.xz |
BulletSim: add requestor's ID to post taint detail log message.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Physics/BulletSPlugin/BSScene.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs b/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs index 24233cc..b3dfa41 100644 --- a/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs +++ b/OpenSim/Region/Physics/BulletSPlugin/BSScene.cs | |||
@@ -987,10 +987,11 @@ public sealed class BSScene : PhysicsScene, IPhysicsParameters | |||
987 | // will replace any previous operation by the same object. | 987 | // will replace any previous operation by the same object. |
988 | public void PostTaintObject(String ident, uint ID, TaintCallback callback) | 988 | public void PostTaintObject(String ident, uint ID, TaintCallback callback) |
989 | { | 989 | { |
990 | string uniqueIdent = ident + "-" + ID.ToString(); | 990 | string IDAsString = ID.ToString(); |
991 | string uniqueIdent = ident + "-" + IDAsString; | ||
991 | lock (_taintLock) | 992 | lock (_taintLock) |
992 | { | 993 | { |
993 | _postTaintOperations[uniqueIdent] = new TaintCallbackEntry(uniqueIdent, callback); | 994 | _postTaintOperations[uniqueIdent] = new TaintCallbackEntry(IDAsString, uniqueIdent, callback); |
994 | } | 995 | } |
995 | 996 | ||
996 | return; | 997 | return; |