From d1bfacfda4d3596667b15f3a99e1ea2f6269aa23 Mon Sep 17 00:00:00 2001 From: kohsuke Date: Thu, 9 Apr 2009 01:39:04 +0000 Subject: [PATCH] report that we are archiving artifacts git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@16942 71c3de6d-444a-0410-be80-ed276b4c234a --- core/src/main/java/hudson/tasks/ArtifactArchiver.java | 1 + core/src/main/resources/hudson/tasks/Messages.properties | 1 + 2 files changed, 2 insertions(+) diff --git a/core/src/main/java/hudson/tasks/ArtifactArchiver.java b/core/src/main/java/hudson/tasks/ArtifactArchiver.java index 0b16b339f5..a55014974b 100644 --- a/core/src/main/java/hudson/tasks/ArtifactArchiver.java +++ b/core/src/main/java/hudson/tasks/ArtifactArchiver.java @@ -96,6 +96,7 @@ public class ArtifactArchiver extends Recorder { File dir = build.getArtifactsDir(); dir.mkdirs(); + listener.getLogger().println(Messages.ArtifactArchiver_ARCHIVING_ARTIFACTS()); try { FilePath ws = p.getWorkspace(); if (ws==null) { // #3330: slave down? diff --git a/core/src/main/resources/hudson/tasks/Messages.properties b/core/src/main/resources/hudson/tasks/Messages.properties index 324df47ff9..1cb82eb4e0 100644 --- a/core/src/main/resources/hudson/tasks/Messages.properties +++ b/core/src/main/resources/hudson/tasks/Messages.properties @@ -28,6 +28,7 @@ Ant.NotADirectory={0} is not a directory Ant.NotAntDirectory={0} doesn''t look like an Ant directory Ant.ProjectConfigNeeded= Maybe you need to configure the job to choose one of your Ant installations? +ArtifactArchiver.ARCHIVING_ARTIFACTS=Archiving artifacts ArtifactArchiver.DeletingOld=Deleting old artifacts from {0} ArtifactArchiver.DisplayName=Archive the artifacts ArtifactArchiver.FailedToArchive=Failed to archive artifacts: {0} -- GitLab