0df7a2cd81
Aggiunta api alive x cancellazione vecchi dati redis e mongoDB
27 lines
767 B
C#
27 lines
767 B
C#
using NKC_SDK;
|
|
using SteamWare;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace NKC_WF.App_Start
|
|
{
|
|
public class NKC_Startup
|
|
{
|
|
public static void Init()
|
|
{
|
|
Log.Instance.Info("Start NKC_Startup.init()", tipoLog.STARTUP);
|
|
try
|
|
{
|
|
// inizializzo appConf prima di tutto il resto...
|
|
memLayer.ML.resetAppConf();
|
|
Log.Instance.Info("Completed preliminary setup AppConf execution", tipoLog.STARTUP);
|
|
}
|
|
catch (Exception exc)
|
|
{
|
|
Log.Instance.Info($"Exception during preliminary INIT app phase{Environment.NewLine}{exc}", tipoLog.EXCEPTION);
|
|
}
|
|
}
|
|
}
|
|
} |