Remove unsupported error wrapping from log.Printf

This commit is contained in:
2025-10-27 18:01:58 +01:00
parent 5ef0654cdd
commit e65f4f1641
6 changed files with 18 additions and 18 deletions

View File

@@ -102,7 +102,7 @@ func (l *lifecycleManager) checkTimeouts() {
for _, name := range timeoutInstances {
log.Printf("Instance %s has timed out, stopping it", name)
if _, err := l.manager.StopInstance(name); err != nil {
log.Printf("Error stopping instance %s: %w", name, err)
log.Printf("Error stopping instance %s: %v", name, err)
} else {
log.Printf("Instance %s stopped successfully", name)
}