From e5fd020b97d6f14fa9ce4b8833ff92e47aa66e22 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 16 Oct 2022 13:12:36 +0100 Subject: [PATCH] mantis 9032: actually shutup if old format --- OpenSim/Services/LLLoginService/LLLoginService.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/OpenSim/Services/LLLoginService/LLLoginService.cs b/OpenSim/Services/LLLoginService/LLLoginService.cs index 7c50f1ad6a..9c4ce1a01a 100755 --- a/OpenSim/Services/LLLoginService/LLLoginService.cs +++ b/OpenSim/Services/LLLoginService/LLLoginService.cs @@ -195,11 +195,9 @@ namespace OpenSim.Services.LLLoginService string hgInvServicePlugin = m_LoginServerConfig.GetString("HGInventoryServicePlugin", string.Empty); if (!string.IsNullOrWhiteSpace(hgInvServicePlugin)) { - // TODO: Remove HGInventoryServiceConstructorArg after 0.9 release string hgInvServiceArg = m_LoginServerConfig.GetString("HGInventoryServiceConstructorArg", string.Empty); if (!string.IsNullOrWhiteSpace(hgInvServiceArg)) { - m_log.Warn("[LLOGIN SERVICE]: You are using HGInventoryServiceConstructorArg, which is deprecated. See example file for correct syntax."); hgInvServicePlugin = hgInvServiceArg + "@" + hgInvServicePlugin; } m_HGInventoryService = ServerUtils.LoadPlugin(hgInvServicePlugin, args);