This commit is contained in:
2020-07-01 23:54:40 +00:00
parent 406d1e3d65
commit ad635c3fff
2 changed files with 4 additions and 4 deletions

View File

@@ -263,10 +263,10 @@ namespace AyaNova.Biz
/// <returns></returns>
internal static async Task ProcessJobAsync(OpsJob job)
{
var JobDescription = $"{job.Name} {job.JobType.ToString()}";
var JobDescription = $"{job.Name} - {job.JobType.ToString()}";
if (job.SubType != JobSubType.NotSet)
JobDescription += $":{job.SubType}";
await LogJobAsync(job.GId, $"Process job \"{JobDescription}\"");
await LogJobAsync(job.GId, $"Processing job \"{JobDescription}\"");
log.LogDebug($"ProcessJobAsync -> Processing job {JobDescription}");
IJobObject o = null;
using (AyContext ct = ServiceProviderProvider.DBContext)