Search in sources :

Example 1 with InternalLogAction

use of de.dagere.peass.ci.logs.InternalLogAction in project peass-ci-plugin by jenkinsci.

the class RCAActionCreator method createOverallActionLog.

private void createOverallActionLog() {
    if (measurementConfig.getExecutionConfig().isRedirectSubprocessOutputToFile()) {
        String rcaLog = reader.getRCALog();
        String maskedLog = LogUtil.mask(rcaLog, pattern);
        run.addAction(new InternalLogAction("rcaLog", "RCA Log", maskedLog));
    }
}
Also used : InternalLogAction(de.dagere.peass.ci.logs.InternalLogAction)

Example 2 with InternalLogAction

use of de.dagere.peass.ci.logs.InternalLogAction in project peass-ci-plugin by jenkinsci.

the class RTSActionCreator method createOverallLogAction.

private void createOverallLogAction() {
    if (measurementConfig.getExecutionConfig().isRedirectSubprocessOutputToFile()) {
        String rtsLog = reader.getRTSLog();
        String maskedLog = LogUtil.mask(rtsLog, pattern);
        run.addAction(new InternalLogAction("rtsLog", "Regression Test Selection Log", maskedLog));
        String sourceReadingLog = reader.getSourceReadingLog();
        run.addAction(new InternalLogAction("sourceLog", "Source Reading Log", sourceReadingLog));
    }
}
Also used : InternalLogAction(de.dagere.peass.ci.logs.InternalLogAction)

Example 3 with InternalLogAction

use of de.dagere.peass.ci.logs.InternalLogAction in project peass-ci-plugin by jenkinsci.

the class MeasurementActionCreator method createOverallLogAction.

private void createOverallLogAction() {
    if (measurementConfig.getExecutionConfig().isRedirectSubprocessOutputToFile()) {
        String measureLog = reader.getMeasureLog();
        String maskedLog = LogUtil.mask(measureLog, pattern);
        run.addAction(new InternalLogAction("measurementLog", "Measurement Log", maskedLog));
    }
}
Also used : InternalLogAction(de.dagere.peass.ci.logs.InternalLogAction)

Aggregations

InternalLogAction (de.dagere.peass.ci.logs.InternalLogAction)3