bugfix: improve logging of the shutdown event.

This commit is contained in:
alexiscatnip
2022-08-06 02:43:06 +08:00
committed by alexiscatnip
parent 2711a47fd7
commit 6e599f928a
2 changed files with 4 additions and 2 deletions
@@ -44,7 +44,7 @@ namespace OpenMetaverse.Http
public object UserData;
protected Uri _Address;
protected string _CapName;
protected internal string _CapName;
protected byte[] _PostData;
protected X509Certificate2 _ClientCert;
protected string _ContentType;
+3 -1
View File
@@ -292,7 +292,9 @@ namespace OpenMetaverse
((HttpWebResponse)exception.Response).StatusCode == HttpStatusCode.NotFound)
{
// 404 error
Logger.Log("Seed capability returned a 404, capability system is aborting : "+ client._CapName,
Logger.Log(
"Seed capability returned a 404, " +
"capability system is aborting : "+ client._CapName,
Helpers.LogLevel.Warning);
}
else