Closed nartamonov closed 7 years ago
Currently that is not possible.
Since aetherDeploy
is a task, it should be possible to configure task-specific logging:
set logLevel in aetherDeploy := Level.Warn
This didn't work for me (with sbt 0.13.13 & aetherDeploy 0.17):
<set>:1: error: not found: value aetherDeploy
logLevel in aetherDeploy := Level.Warn
^
Currently, the only solution I know of is to do it globally and then restore task-specific logging for other configurable tasks:
set logLevel := Level.Warn
set logLevel in compile := Level.Info
Then, aetherDeploy
is quiet; however, it is too quiet because upload progress & the artifact uploaded are logged at the same level - i.e. Level.Info
.
It would be better if the progress were logged at Level.Debug
& artifacts at Level.Info
.
I think that's possible; it could be simply a matter of changing the log level here:
Hi!
Is it possible to turn off very verbose logging of artifacts uploading progress?