Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-21486] Mention both long name, short name and version in con…
…sole
  • Loading branch information
Vlatombe committed Jul 29, 2016
1 parent d8f3bfc commit 8e3c9da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/PluginManager.java
Expand Up @@ -505,7 +505,7 @@ public void run(Reactor session) throws Exception {

// schedule execution of loading plugins
for (final PluginWrapper p : activePlugins.toArray(new PluginWrapper[activePlugins.size()])) {
g.followedBy().notFatal().attains(PLUGINS_PREPARED).add("Loading plugin " + p.getShortName(), new Executable() {
g.followedBy().notFatal().attains(PLUGINS_PREPARED).add(String.format("Loading plugin %s v%s (%s)", p.getLongName(), p.getVersion(), p.getShortName()), new Executable() {
public void run(Reactor session) throws Exception {
try {
p.resolvePluginDependencies();
Expand Down

0 comments on commit 8e3c9da

Please sign in to comment.