refresh classname step --> thermo

This commit is contained in:
Samuele Locatelli
2020-06-12 18:42:00 +02:00
parent 7b76ea602e
commit 134aaf31d4
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ using System.Windows.Forms;
using Thermo.Active.Model;
using TeamDev.SDK.MVVM;
using static Thermo.Active.Model.Constants;
using static Thermo.Active.Utils.StepLogger;
using static Thermo.Active.Utils.ThermoActiveLogger;
namespace Thermo.Active.Utils
{
@@ -69,7 +69,7 @@
<Compile Include="ExceptionManager.cs" />
<Compile Include="LanguageController.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="StepLogger.cs" />
<Compile Include="ThermoActiveLogger.cs" />
<Compile Include="SupportFunctions.cs" />
</ItemGroup>
<ItemGroup>
@@ -42,7 +42,7 @@ namespace Thermo.Active.Controllers.WebApi
var context = GlobalHost.ConnectionManager.GetHubContext<NcHub>();
context.Clients.All.logout(new { id = userId.Value });
StepLogger.LogMessage("Logout: " + userId.Value + "Date:" + DateTime.Now, ERROR_LEVEL.INFO);
ThermoActiveLogger.LogMessage("Logout: " + userId.Value + "Date:" + DateTime.Now, ERROR_LEVEL.INFO);
return Ok();
}