on log and "show scripts" messages, show script item UUID rather than asset UUID
The item ID is the one required for any script manipulation on the command line, so I think it's somewhat more useful to show this bearing in mind the limited space availableremove-scene-viewer
parent
116fbe8258
commit
b45219065c
|
@ -306,8 +306,8 @@ namespace OpenSim.Region.ScriptEngine.XEngine
|
||||||
}
|
}
|
||||||
|
|
||||||
MainConsole.Instance.OutputFormat(
|
MainConsole.Instance.OutputFormat(
|
||||||
"{0}.{1}, script UUID {2}, prim UUID {3} @ {4} ({5})",
|
"{0}.{1}, item UUID {2}, prim UUID {3} @ {4} ({5})",
|
||||||
instance.PrimName, instance.ScriptName, instance.AssetID, instance.ObjectID,
|
instance.PrimName, instance.ScriptName, instance.ItemID, instance.ObjectID,
|
||||||
sop.AbsolutePosition, status);
|
sop.AbsolutePosition, status);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -840,8 +840,8 @@ namespace OpenSim.Region.ScriptEngine.XEngine
|
||||||
stateSource, m_MaxScriptQueue);
|
stateSource, m_MaxScriptQueue);
|
||||||
|
|
||||||
m_log.DebugFormat(
|
m_log.DebugFormat(
|
||||||
"[XEngine] Loaded script {0}.{1}, script UUID {2}, prim UUID {3} @ {4}.{5}",
|
"[XEngine] Loaded script {0}.{1}, item UUID {2}, prim UUID {3} @ {4}.{5}",
|
||||||
part.ParentGroup.RootPart.Name, item.Name, assetID, part.UUID,
|
part.ParentGroup.RootPart.Name, item.Name, itemID, part.UUID,
|
||||||
part.ParentGroup.RootPart.AbsolutePosition, part.ParentGroup.Scene.RegionInfo.RegionName);
|
part.ParentGroup.RootPart.AbsolutePosition, part.ParentGroup.Scene.RegionInfo.RegionName);
|
||||||
|
|
||||||
if (presence != null)
|
if (presence != null)
|
||||||
|
|
Loading…
Reference in New Issue