diff options
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | 38 | ||||
-rw-r--r-- | OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs | 2 |
2 files changed, 21 insertions, 19 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs index 0fbf90a..7d31a89 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |||
@@ -356,7 +356,7 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
356 | } | 356 | } |
357 | catch (Exception e) | 357 | catch (Exception e) |
358 | { | 358 | { |
359 | m_log.ErrorFormat("[BASE HTTP SERVER]: OnRequest() failed with {0}{1}", e.Message, e.StackTrace); | 359 | m_log.Error(String.Format("[BASE HTTP SERVER]: OnRequest() failed: {0}", e.Message), e); |
360 | } | 360 | } |
361 | } | 361 | } |
362 | 362 | ||
@@ -551,11 +551,11 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
551 | catch (SocketException e) | 551 | catch (SocketException e) |
552 | { | 552 | { |
553 | // This has to be here to prevent a Linux/Mono crash | 553 | // This has to be here to prevent a Linux/Mono crash |
554 | m_log.WarnFormat("[BASE HTTP SERVER]: XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", e); | 554 | m_log.Warn(String.Format("[BASE HTTP SERVER]: XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", e.Message), e); |
555 | } | 555 | } |
556 | catch (IOException e) | 556 | catch (IOException e) |
557 | { | 557 | { |
558 | m_log.Warn("[BASE HTTP SERVER]: XmlRpcRequest issue: " + e.Message); | 558 | m_log.Warn(String.Format("[BASE HTTP SERVER]: XmlRpcRequest issue {0}.", e.Message), e); |
559 | } | 559 | } |
560 | 560 | ||
561 | return; | 561 | return; |
@@ -658,15 +658,15 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
658 | // | 658 | // |
659 | // An alternative may be to turn off all response write exceptions on the HttpListener, but let's go | 659 | // An alternative may be to turn off all response write exceptions on the HttpListener, but let's go |
660 | // with the minimum first | 660 | // with the minimum first |
661 | m_log.WarnFormat("[BASE HTTP SERVER]: HandleRequest threw {0}.\nNOTE: this may be spurious on Linux", e); | 661 | m_log.Warn(String.Format("[BASE HTTP SERVER]: HandleRequest threw {0}.\nNOTE: this may be spurious on Linux", e.Message), e); |
662 | } | 662 | } |
663 | catch (IOException e) | 663 | catch (IOException e) |
664 | { | 664 | { |
665 | m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw {0}{1}", e.Message, e.StackTrace); | 665 | m_log.Error(String.Format("[BASE HTTP SERVER]: HandleRequest() threw {0}", e.Message), e); |
666 | } | 666 | } |
667 | catch (Exception e) | 667 | catch (Exception e) |
668 | { | 668 | { |
669 | m_log.ErrorFormat("[BASE HTTP SERVER]: HandleRequest() threw {0}{1}", e.Message, e.StackTrace); | 669 | m_log.Error(String.Format("[BASE HTTP SERVER]: HandleRequest() threw {0}", e.Message), e); |
670 | SendHTML500(response); | 670 | SendHTML500(response); |
671 | } | 671 | } |
672 | finally | 672 | finally |
@@ -925,11 +925,11 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
925 | catch (SocketException e) | 925 | catch (SocketException e) |
926 | { | 926 | { |
927 | // This has to be here to prevent a Linux/Mono crash | 927 | // This has to be here to prevent a Linux/Mono crash |
928 | m_log.WarnFormat("[BASE HTTP SERVER]: XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", e); | 928 | m_log.Warn(String.Format("[BASE HTTP SERVER]: XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", e.Message), e); |
929 | } | 929 | } |
930 | catch (IOException e) | 930 | catch (IOException e) |
931 | { | 931 | { |
932 | m_log.Warn("[BASE HTTP SERVER]: XmlRpcRequest issue: " + e.Message); | 932 | m_log.Warn(String.Format("[BASE HTTP SERVER]: XmlRpcRequest issue {0}", e.Message), e); |
933 | } | 933 | } |
934 | } | 934 | } |
935 | return; | 935 | return; |
@@ -962,11 +962,11 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
962 | catch (SocketException e) | 962 | catch (SocketException e) |
963 | { | 963 | { |
964 | // This has to be here to prevent a Linux/Mono crash | 964 | // This has to be here to prevent a Linux/Mono crash |
965 | m_log.WarnFormat("[BASE HTTP SERVER]: XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", e); | 965 | m_log.Warn(String.Format("[BASE HTTP SERVER]: XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", e.Message), e); |
966 | } | 966 | } |
967 | catch (IOException e) | 967 | catch (IOException e) |
968 | { | 968 | { |
969 | m_log.Warn("[BASE HTTP SERVER]: XmlRpcRequest issue: " + e.Message); | 969 | m_log.Warn(String.Format("[BASE HTTP SERVER]: XmlRpcRequest issue {0}", e.Message), e); |
970 | } | 970 | } |
971 | } | 971 | } |
972 | } | 972 | } |
@@ -1077,12 +1077,12 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
1077 | } | 1077 | } |
1078 | catch (IOException e) | 1078 | catch (IOException e) |
1079 | { | 1079 | { |
1080 | m_log.WarnFormat("[BASE HTTP SERVER]: LLSD IOException {0}.", e); | 1080 | m_log.Warn(String.Format("[BASE HTTP SERVER]: LLSD IOException {0}", e.Message), e); |
1081 | } | 1081 | } |
1082 | catch (SocketException e) | 1082 | catch (SocketException e) |
1083 | { | 1083 | { |
1084 | // This has to be here to prevent a Linux/Mono crash | 1084 | // This has to be here to prevent a Linux/Mono crash |
1085 | m_log.WarnFormat("[BASE HTTP SERVER]: LLSD issue {0}.\nNOTE: this may be spurious on Linux.", e); | 1085 | m_log.Warn(String.Format("[BASE HTTP SERVER]: LLSD issue {0}.\nNOTE: this may be spurious on Linux.", e.Message), e); |
1086 | } | 1086 | } |
1087 | } | 1087 | } |
1088 | } | 1088 | } |
@@ -1334,8 +1334,8 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
1334 | catch (SocketException f) | 1334 | catch (SocketException f) |
1335 | { | 1335 | { |
1336 | // This has to be here to prevent a Linux/Mono crash | 1336 | // This has to be here to prevent a Linux/Mono crash |
1337 | m_log.WarnFormat( | 1337 | m_log.Warn( |
1338 | "[BASE HTTP SERVER]: XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", f); | 1338 | String.Format("[BASE HTTP SERVER]: XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", f.Message), f); |
1339 | } | 1339 | } |
1340 | } | 1340 | } |
1341 | catch(Exception) | 1341 | catch(Exception) |
@@ -1630,11 +1630,11 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
1630 | catch (SocketException e) | 1630 | catch (SocketException e) |
1631 | { | 1631 | { |
1632 | // This has to be here to prevent a Linux/Mono crash | 1632 | // This has to be here to prevent a Linux/Mono crash |
1633 | m_log.WarnFormat("[BASE HTTP SERVER]: XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", e); | 1633 | m_log.Warn(String.Format("[BASE HTTP SERVER]: XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", e.Message), e); |
1634 | } | 1634 | } |
1635 | catch (IOException e) | 1635 | catch (IOException e) |
1636 | { | 1636 | { |
1637 | m_log.Warn("[BASE HTTP SERVER]: XmlRpcRequest issue: " + e.Message); | 1637 | m_log.Warn(String.Format("[BASE HTTP SERVER]: XmlRpcRequest issue {0}", e.Message), e); |
1638 | } | 1638 | } |
1639 | } | 1639 | } |
1640 | } | 1640 | } |
@@ -1671,7 +1671,7 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
1671 | catch (SocketException e) | 1671 | catch (SocketException e) |
1672 | { | 1672 | { |
1673 | // This has to be here to prevent a Linux/Mono crash | 1673 | // This has to be here to prevent a Linux/Mono crash |
1674 | m_log.WarnFormat("[BASE HTTP SERVER]: XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", e); | 1674 | m_log.Warn(String.Format("[BASE HTTP SERVER]: XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", e.Message), e); |
1675 | } | 1675 | } |
1676 | } | 1676 | } |
1677 | } | 1677 | } |
@@ -1707,7 +1707,7 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
1707 | catch (SocketException e) | 1707 | catch (SocketException e) |
1708 | { | 1708 | { |
1709 | // This has to be here to prevent a Linux/Mono crash | 1709 | // This has to be here to prevent a Linux/Mono crash |
1710 | m_log.WarnFormat("[BASE HTTP SERVER] XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", e); | 1710 | m_log.Warn(String.Format("[BASE HTTP SERVER] XmlRpcRequest issue {0}.\nNOTE: this may be spurious on Linux.", e.Message), e); |
1711 | } | 1711 | } |
1712 | } | 1712 | } |
1713 | } | 1713 | } |
@@ -1786,7 +1786,7 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
1786 | 1786 | ||
1787 | public void httpServerException(object source, Exception exception) | 1787 | public void httpServerException(object source, Exception exception) |
1788 | { | 1788 | { |
1789 | m_log.ErrorFormat("[BASE HTTP SERVER]: {0} had an exception {1}", source.ToString(), exception.ToString()); | 1789 | m_log.Error(String.Format("[BASE HTTP SERVER]: {0} had an exception: {1}", source.ToString(), exception.Message), exception); |
1790 | /* | 1790 | /* |
1791 | if (HTTPDRunning)// && NotSocketErrors > 5) | 1791 | if (HTTPDRunning)// && NotSocketErrors > 5) |
1792 | { | 1792 | { |
diff --git a/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs b/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs index 06fea58..8da9139 100644 --- a/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs +++ b/OpenSim/Region/CoreModules/World/Objects/Commands/ObjectCommandsModule.cs | |||
@@ -271,6 +271,7 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands | |||
271 | sb.AppendFormat("Description: {0}\n", so.Description); | 271 | sb.AppendFormat("Description: {0}\n", so.Description); |
272 | sb.AppendFormat("Location: {0} @ {1}\n", so.AbsolutePosition, so.Scene.RegionInfo.RegionName); | 272 | sb.AppendFormat("Location: {0} @ {1}\n", so.AbsolutePosition, so.Scene.RegionInfo.RegionName); |
273 | sb.AppendFormat("Parts: {0}\n", so.PrimCount); | 273 | sb.AppendFormat("Parts: {0}\n", so.PrimCount); |
274 | sb.AppendFormat("Flags: {0}\n", so.RootPart.Flags); | ||
274 | 275 | ||
275 | return sb; | 276 | return sb; |
276 | } | 277 | } |
@@ -283,6 +284,7 @@ namespace OpenSim.Region.CoreModules.World.Objects.Commands | |||
283 | sb.AppendFormat("Parent: {0}", | 284 | sb.AppendFormat("Parent: {0}", |
284 | sop.IsRoot ? "Is Root\n" : string.Format("{0} {1}\n", sop.ParentGroup.Name, sop.ParentGroup.UUID)); | 285 | sop.IsRoot ? "Is Root\n" : string.Format("{0} {1}\n", sop.ParentGroup.Name, sop.ParentGroup.UUID)); |
285 | sb.AppendFormat("Link number: {0}\n", sop.LinkNum); | 286 | sb.AppendFormat("Link number: {0}\n", sop.LinkNum); |
287 | sb.AppendFormat("Flags: {0}\n", sop.Flags); | ||
286 | 288 | ||
287 | return sb; | 289 | return sb; |
288 | } | 290 | } |