This commit is contained in:
2020-03-25 23:27:12 +00:00
parent 0b90b25ab4
commit 6ae62b3301
2 changed files with 2 additions and 1 deletions

View File

@@ -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);
}
//##########################################################################################################

View File

@@ -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);
}