Job Execution Aborted Committing Console Writeline

We have a job that runs early in the morning each day and have other jobs spaced equally so that they don’t overlap their running process. This one job writes its process to the console as it executes so that we can track what actions are happening as they occur. Most days it runs without issue, but now and then it aborts on the very first message we write to the console.
Each job has the following attributes so that the job is not restarted and will not run again, since these run each night, any failures will be taken care of with the next night’s job run.
[ProlongExpirationTime]
[DisableConcurrentExecution(timeoutInSeconds: 18000)]
[AutomaticRetry(Attempts = 0)]

I don’t understand why this would be happening and what I can do to fix it. We are using version 1.6.14 of Hangfire server.

This is the full error output:

An exception occurred during performance of the job.

System.Transactions.TransactionAbortedException
The transaction has aborted.

System.Transactions.TransactionAbortedException: The transaction has aborted. —> System.TimeoutException: Transaction Timeout
— End of inner exception stack trace —
at System.Transactions.TransactionStateAborted.BeginCommit(InternalTransaction tx, Boolean asyncCommit, AsyncCallback asyncCallback, Object asyncState)
at System.Transactions.CommittableTransaction.Commit()
at System.Transactions.TransactionScope.InternalDispose()
at System.Transactions.TransactionScope.Dispose()
at Hangfire.SqlServer.SqlServerStorage.UseTransaction[T](Func3 func, Nullable1 isolationLevel)
at Hangfire.SqlServer.SqlServerStorage.UseTransaction(Action`2 action)
at Hangfire.SqlServer.SqlServerWriteOnlyTransaction.Commit()
at Hangfire.Console.Storage.ConsoleStorage.AddLine(ConsoleId consoleId, ConsoleLine line)
at Hangfire.Console.Server.ConsoleContext.AddLine(ConsoleLine line)
at EmpoweredHoa.BackOffice.Web.Services.CitApis.CitApiDocumentService.WriteMessage(String message, ConsoleTextColor color) in C:\Projects\EmpoweredHoa\source\EmpoweredHoa.BackOffice.Web\Services\CitApis\CitApiDocumentService.cs:line 68
at EmpoweredHoa.BackOffice.Web.Services.CitApis.CitApiDocumentService.DownloadDocuments() in C:\Projects\EmpoweredHoa\source\EmpoweredHoa.BackOffice.Web\Services\CitApis\CitApiDocumentService.cs:line 104
at EmpoweredHoa.BackOffice.Web.Services.CitApis.CitApiDocumentService.DownloadDocumentList(PerformContext context) in C:\Projects\EmpoweredHoa\source\EmpoweredHoa.BackOffice.Web\Services\CitApis\CitApiDocumentService.cs:line 85