Interface ArtifactsProcessorLogger
-
- All Known Implementing Classes:
ArtifactsPublishingLoggerBase
,InternalArtifactsProcessingLogger
,InternalBuildCacheArtifactsProcessingLogger
,UserArtifactsProcessingLogger
public interface ArtifactsProcessorLogger
- Since:
- 6.5
- Author:
- Eugene Petrenko (eugene.petrenko@gmail.com) Date: 06.05.11 14:36
-
-
Method Summary
-
-
-
Method Detail
-
logProcessStarted
void logProcessStarted(@NotNull Collection<String> paths)
entire artifacts publishing process started
-
logProcessFinished
void logProcessFinished()
entire artifacts publishing process finished
-
logCollectingFilesStarted
void logCollectingFilesStarted(@NotNull Collection<String> paths)
phase 1. collecting files started- Parameters:
paths
-
-
logCollectingFilesFinished
void logCollectingFilesFinished(@NotNull Collection<ArtifactsCollection> toPublish)
phase 1. collecting files finished- Parameters:
paths
-
-
logProcessingFilesStarted
void logProcessingFilesStarted(@NotNull Collection<ArtifactsCollection> toPublish)
phase 2. processing found files (i.e. packing zips) started- Parameters:
toPublish
-
-
logProcessingFilesFinished
void logProcessingFilesFinished(@NotNull Collection<ArtifactsCollection> toPublish)
phase 2. processing found files (i.e. packing zips) finished- Parameters:
toPublish
-
-
logArtifactPublishingStarted
void logArtifactPublishingStarted(@NotNull ArtifactsPublisher publisher, @NotNull ArtifactsCollection artifactsCollection)
phase 3. sending files to server started- Parameters:
artifactsCollection
-
-
logArtifactsPublisherPublished
void logArtifactsPublisherPublished(@NotNull ArtifactsPublisher publisher, int totalPublished, @NotNull ArtifactsCollection artifactsCollection)
phase 3.x. sending files to the server with artifact publisher finished- Parameters:
publisher
-totalPublished
-artifactsCollection
-
-
logArtifactPublisherPublishingFailed
void logArtifactPublisherPublishingFailed(@NotNull ArtifactPublishingFailedException e)
phase 3.x. sending files to the server with artifact publisher failed
-
logArtifactPublishingFinished
void logArtifactPublishingFinished(@NotNull ArtifactsCollection artifactsCollection)
phase 3. sending files to server finished- Parameters:
artifactsCollection
-
-
logArtifactPublishingInterrupted
void logArtifactPublishingInterrupted(@NotNull ArtifactsCollection artifactsCollection)
- Parameters:
artifactsCollection
-
-
logArtifactNotFound
void logArtifactNotFound(@NotNull String srcPath)
Artifact processing error- Parameters:
srcPath
-
-
getFlowLogger
FlowLogger getFlowLogger()
-
-