1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-01-22 12:12:53 +02:00

Убрал лишние логи

This commit is contained in:
Nikita Gryzlov 2020-10-21 14:52:13 +03:00 committed by kuzja086
parent 1dbf4dce47
commit 316decba7c
2 changed files with 0 additions and 7 deletions

View File

@ -1,7 +1,6 @@
package ru.pulsar.jenkins.library
import org.jenkinsci.plugins.workflow.support.actions.EnvironmentAction
import ru.pulsar.jenkins.library.utils.Logger
import ru.yandex.qatools.allure.jenkins.config.ResultsConfig
class StepExecutor implements IStepExecutor {
@ -118,7 +117,6 @@ class StepExecutor implements IStepExecutor {
@Override
def allure(List<String> results) {
Logger.println(ResultsConfig.convertPaths(results))
steps.allure([
commandline: 'allure',
includeProperties: false,

View File

@ -32,9 +32,6 @@ class PublishAllure implements Serializable {
List<String> results = new ArrayList<>();
Logger.println(allurePath.toString())
Logger.println(allurePath.listDirectories().toString())
allurePath.listDirectories().each { FilePath filePath ->
results.add(FileUtils.getLocalPath(filePath))
}
@ -42,8 +39,6 @@ class PublishAllure implements Serializable {
results.add(FileUtils.getLocalPath(allurePath))
}
Logger.println(results.toString())
steps.allure(results)
}