Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve plugin list entries in the --list command #241

Merged
merged 1 commit into from
Dec 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,9 @@ public void listPlugins() {
if (cfg.isShowPluginsToBeDownloaded()) {
logPlugins("Installed plugins:", new ArrayList<>(installedPluginVersions.values()));
logPlugins("Bundled plugins:", new ArrayList<>(bundledPluginVersions.values()));
logPlugins("Set of all requested plugins:", new ArrayList<>(allPluginsAndDependencies.values()));
logPlugins("Set of all requested plugins that will be downloaded:", pluginsToBeDownloaded);
logPlugins("Set of all existing plugins and plugins that will be downloaded:",
logPlugins("All requested plugins:", new ArrayList<>(allPluginsAndDependencies.values()));
logPlugins("Plugins that will be downloaded:", pluginsToBeDownloaded);
logPlugins("Resulting plugin list:",
new ArrayList<>(effectivePlugins.values()));
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,17 +233,17 @@ public void listPluginsOutputTest() throws Exception {
"\nBundled plugins:\n" +
"bundled1 1.0\n" +
"bundled2 2.0\n" +
"\nSet of all requested plugins:\n" +
"\nAll requested plugins:\n" +
"dependency1 1.0.0\n" +
"dependency2 1.0.0\n" +
"plugin1 1.0\n" +
"plugin2 2.0\n" +
"\nSet of all requested plugins that will be downloaded:\n" +
"\nPlugins that will be downloaded:\n" +
"dependency1 1.0.0\n" +
"dependency2 1.0.0\n" +
"plugin1 1.0\n" +
"plugin2 2.0\n" +
"\nSet of all existing plugins and plugins that will be downloaded:\n" +
"\nResulting plugin list:\n" +
"bundled1 1.0\n" +
"bundled2 2.0\n" +
"dependency1 1.0.0\n" +
Expand Down