Package org.jenkinsci.plugins.workflow.actions

Examples of org.jenkinsci.plugins.workflow.actions.LogAction


                LOGGER.log(Level.WARNING, "no such node {0}", entry.getKey());
                it.remove();
                modified = true;
                continue;
            }
            LogAction la = node.getAction(LogAction.class);
            if (la != null) {
                AnnotatedLargeText<? extends FlowNode> logText = la.getLogText();
                try {
                    long old = entry.getValue();
                    long revised = logText.writeRawLogTo(old, listener.getLogger());
                    if (revised != old) {
                        entry.setValue(revised);
View Full Code Here

TOP

Related Classes of org.jenkinsci.plugins.workflow.actions.LogAction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.