From 7726ae68c6597fefe517572d08bc0fae3d85c519 Mon Sep 17 00:00:00 2001 From: Piotr Kazmierczak <470696+pkazmierczak@users.noreply.github.com> Date: Wed, 8 Jan 2025 15:44:35 +0100 Subject: [PATCH] client: move 'waiting for previous alloc to terminate' log messages to info (#24804) --- client/allocwatcher/alloc_watcher.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/allocwatcher/alloc_watcher.go b/client/allocwatcher/alloc_watcher.go index b8fe48d04..a2305235b 100644 --- a/client/allocwatcher/alloc_watcher.go +++ b/client/allocwatcher/alloc_watcher.go @@ -249,7 +249,7 @@ func (p *localPrevAlloc) Wait(ctx context.Context) error { } // Block until previous alloc exits - p.logger.Debug("waiting for previous alloc to terminate") + p.logger.Info("waiting for previous alloc to terminate") for { select { case prevAlloc, ok := <-p.prevListener.Ch(): @@ -350,7 +350,7 @@ func (p *remotePrevAlloc) Wait(ctx context.Context) error { p.waitingLock.Unlock() }() - p.logger.Debug("waiting for remote previous alloc to terminate") + p.logger.Info("waiting for remote previous alloc to terminate") req := structs.AllocSpecificRequest{ AllocID: p.prevAllocID, QueryOptions: structs.QueryOptions{