File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/com/cloudbees/jenkins Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,6 @@ private boolean runPolling() {
108
108
109
109
public void run () {
110
110
if (runPolling ()) {
111
- String name = " #" + job .getNextBuildNumber ();
112
111
GitHubPushCause cause ;
113
112
try {
114
113
cause = new GitHubPushCause (getLogFile (), pushBy );
@@ -117,9 +116,10 @@ public void run() {
117
116
cause = new GitHubPushCause (pushBy );
118
117
}
119
118
if (asParameterizedJobMixIn (job ).scheduleBuild (cause )) {
120
- LOGGER .info ("SCM changes detected in " + job .getName () + ". Triggering " + name );
119
+ LOGGER .info ("SCM changes detected in " + job .getFullName ()
120
+ + ". Triggering #" + job .getNextBuildNumber ());
121
121
} else {
122
- LOGGER .info ("SCM changes detected in " + job .getName () + ". Job is already in the queue" );
122
+ LOGGER .info ("SCM changes detected in " + job .getFullName () + ". Job is already in the queue" );
123
123
}
124
124
}
125
125
}
You can’t perform that action at this time.
0 commit comments