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

Remove "INFO:" from the beginning of list-patches's output #301

Closed
wants to merge 2 commits into from

Conversation

SandaruKasa
Copy link
Contributor

Supersedes #300

@@ -118,6 +115,6 @@ internal object ListPatchesCommand : Runnable {
val filtered =
packageName?.let { patches.filter { (_, patch) -> patch.filterCompatiblePackages(it) } } ?: patches

if (filtered.isNotEmpty()) logger.info(filtered.joinToString("\n\n") { it.buildString() })
if (filtered.isNotEmpty()) println(filtered.joinToString("\n\n") { it.buildString() })
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The logger should be used instead of println.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The logger should be used instead of println.

Is it possible to suppress the "INFO:" thing that it outputs?

@oSumAtrIX
Copy link
Member

Thanks anyways.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants