diff --git a/server/AyaNova/Controllers/ApiRootController.cs b/server/AyaNova/Controllers/ApiRootController.cs index 4fe38edd..bcb9919e 100644 --- a/server/AyaNova/Controllers/ApiRootController.cs +++ b/server/AyaNova/Controllers/ApiRootController.cs @@ -51,6 +51,8 @@ namespace AyaNova.Api.Controllers
{AyaNova.Core.License.LicenseInfo}
{AySchema.currentSchema.ToString()}
+ {UserBiz.ActiveCount}
{DateUtil.ServerDateTimeString(System.DateTime.UtcNow)}
{TimeZoneInfo.Local.Id}
diff --git a/server/AyaNova/Startup.cs b/server/AyaNova/Startup.cs
index b7703725..3abcfa36 100644
--- a/server/AyaNova/Startup.cs
+++ b/server/AyaNova/Startup.cs
@@ -443,6 +443,10 @@ namespace AyaNova
}
});
+
+ //Log the active user count so it's in the log record
+ _log.LogInformation($"BOOT: Active techs - {UserBiz.ActiveCount}" );
+
//Log the license info so it's on the record
_log.LogInformation($"BOOT: License -\r\n=-=-=-=-=-=-=-=-=-=-\r\n{AyaNova.Core.License.LicenseInfo}=-=-=-=-=-=-=-=-=-=-" );