override suspend fun downloadArtifact()

in teamcity-rest-client-impl/src/main/kotlin/org/jetbrains/teamcity/rest/coroutines/implementation.kt [2220:2227]


    override suspend fun downloadArtifact(artifactPath: String, output: OutputStream) {
        LOG.info("Downloading artifact '$artifactPath' from build ${getHomeUrl()}")
        try {
            downloadArtifactImpl(artifactPath, output)
        } finally {
            LOG.debug("Artifact '$artifactPath' from build ${getHomeUrl()} downloaded")
        }
    }