diff --git a/server/AyaNova/util/License.cs b/server/AyaNova/util/License.cs index 00a6db80..59a49abc 100644 --- a/server/AyaNova/util/License.cs +++ b/server/AyaNova/util/License.cs @@ -436,6 +436,7 @@ namespace AyaNova.Core { log.LogInformation("TEST MODE TRIAL LICENSE KEY BEING FETCHED"); sUrl = $"{LICENSE_SERVER_URL}rvf/{TEST_TRIAL_KEY_DBID.ToString()}"; + log.LogInformation(sUrl); } //########################################################################################################## diff --git a/server/AyaNova/util/Seeder.cs b/server/AyaNova/util/Seeder.cs index ba215fab..c560de94 100644 --- a/server/AyaNova/util/Seeder.cs +++ b/server/AyaNova/util/Seeder.cs @@ -71,7 +71,7 @@ namespace AyaNova.Util //Only allow this in a trial database if (!AyaNova.Core.License.ActiveKey.TrialLicense) { - var msg = "This database has a registered license key so it can't be seeded"; + var msg = $"This database has a registered license key so it can't be seeded: {AyaNova.Core.License.LicenseInfoLogFormat}"; await LogStatusAsync(JobId, LogJob, log, msg); throw new System.NotSupportedException(msg); }