You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be very useful to have Ansible output processed on maven output to monitor what happens during the process.
Right now the output is available with the "--debug" maven flag which turns the whole maven into debug mode, too much verbosity, I'd like only Ansible to be verbose =)
In AbstractAnsibleMojo.java, there is this line of code
getLog().debug(outputLine);
Could it be possible to change verbosity depending on a plugin settings, for example ansible.promoteDebugAsInfo ?
In that case, code could be :
if (promoteDebugAsInfo) {
getLog().info(outputLine);
} else {
getLog().debug(outputLine);
}
The text was updated successfully, but these errors were encountered:
It would be very useful to have Ansible output processed on maven output to monitor what happens during the process.
Right now the output is available with the "--debug" maven flag which turns the whole maven into debug mode, too much verbosity, I'd like only Ansible to be verbose =)
In AbstractAnsibleMojo.java, there is this line of code
Could it be possible to change verbosity depending on a plugin settings, for example ansible.promoteDebugAsInfo ?
In that case, code could be :
The text was updated successfully, but these errors were encountered: