1
0
Fork 0

Log Successful Arc Patch

Notify the build log when a patch has been applied without issues.
This commit is contained in:
Steven Cooney 2019-06-05 14:15:06 +01:00
parent 51b9c105aa
commit 6a16a01e93

View file

@ -98,6 +98,10 @@ public class AgentBuildExtension extends AgentLifeCycleAdapter {
if (patchCode > 0) {
runningBuild.stopBuild("Patch failed to apply. Check the agent output log for patch failure detals.");
return;
}
buildLogger.message(String.format(OUTPUT_PREFIX, "Patch completed"));
agentLogLogger.info("Patch completed");
}
}