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

Adds --log=LEVEL to allow specifying verbosity. #52

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dlzr
Copy link

@dlzr dlzr commented Dec 12, 2020

Hey folks,

I need to run adb-sync from a cronjob, and any output from the command will generate an email. I need it to only print output in case something went wrong, to minimize the number of spurious emails.

adb itself writes its normal chatter to stdout, which I redirect to /dev/null, and only error messages end up in stderr, as expected. adb-sync uses python's logging library, which seems to write everything to stderr, regardless of severity, which makes it hard to only silence the benign verbosity.

So, this PR adds a --log flag, to make it possible to silence the "everything is fine, just doing my job" messages, while leaving the serious stuff on. I've set it up to default to INFO, which is what the current code is doing.

I've already signed the CLA.

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.

1 participant