Skip to content

Commit b08f9f8

Browse files
committed
fix: update logging format for uv warning
1 parent 73b3375 commit b08f9f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/service/instance_updater.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ func (s *InstanceUpdaterService) createEnv(tm *model.TaskManager, envPath string
153153
utils.Logger.Infof("[%s]: Creating venv with uv: %s", tm.InstanceName, cmd)
154154
} else {
155155
cmd = fmt.Sprintf("python -m venv %s", envPath)
156-
utils.Logger.Warn("[%s]: uv not found or python version not set, using default python command to create venv: %s", tm.InstanceName, cmd)
156+
utils.Logger.Warnf("[%s]: uv not found or python version not set, using default python command to create venv: %s", tm.InstanceName, cmd)
157157
}
158158

159159
if err := s.schedulerService.RunCommand(tm, cmd, ""); err != nil {

0 commit comments

Comments
 (0)