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 useful to have a -v and -vv options for provide verbose and very verbose outputs. We currently provide lots of verbose output to help with debugging; adding these filtering options would allow us to provide cleaner messages by default and still allow the output of detailed debugging information when needed.
The text was updated successfully, but these errors were encountered:
We have a bunch of debugging information that we currently write to STDERR. Just changing those over to use log4j should be enough to close this issue.
This PR replaces most of our System.err calls with calls to the SLF4J logging system. This will make it easier to add debugging information in the future, when we can use verbose flags (`-v`, `-vv`) to provide increasingly detailed debugging information (#31).
Closes#51.
It would be useful to have a
-v
and-vv
options for provide verbose and very verbose outputs. We currently provide lots of verbose output to help with debugging; adding these filtering options would allow us to provide cleaner messages by default and still allow the output of detailed debugging information when needed.The text was updated successfully, but these errors were encountered: