diff --git a/client/allocrunner/alloc_runner.go b/client/allocrunner/alloc_runner.go index 1bd8f3020..73ae31f9c 100644 --- a/client/allocrunner/alloc_runner.go +++ b/client/allocrunner/alloc_runner.go @@ -650,13 +650,13 @@ func (ar *allocRunner) Update(update *structs.Allocation) { // and return. This case shouldn't happen, but may in the case of a bug // elsewhere inside the system. if oldUpdate.AllocModifyIndex > update.AllocModifyIndex { - ar.logger.Warn("Discarding allocation update due to newer alloc revision in queue", + ar.logger.Debug("Discarding allocation update due to newer alloc revision in queue", "old_modify_index", oldUpdate.AllocModifyIndex, "new_modify_index", update.AllocModifyIndex) ar.allocUpdatedCh <- oldUpdate return } else { - ar.logger.Trace("Discarding allocation update", + ar.logger.Debug("Discarding allocation update", "skipped_modify_index", oldUpdate.AllocModifyIndex, "new_modify_index", update.AllocModifyIndex) }