Allow welcome-message to configure logging
As-was it was basically a no-op except that it output a warning
message about not being able to find a logger.
Change-Id: Ia69d55f13d8f77aa93326757229fda8ca4d7cd9a
diff --git a/jeepyb/cmd/welcome_message.py b/jeepyb/cmd/welcome_message.py
index 03278cc..8acf0d1 100644
--- a/jeepyb/cmd/welcome_message.py
+++ b/jeepyb/cmd/welcome_message.py
@@ -35,7 +35,6 @@
BASE_DIR = '/home/gerrit2/review_site'
logger = logging.getLogger('welcome_reviews')
-logger.setLevel(logging.INFO)
def is_newbie(uploader):
@@ -135,10 +134,17 @@
# Don't actually post the message
parser.add_argument('--dryrun', dest='dryrun', action='store_true')
parser.add_argument('--no-dryrun', dest='dryrun', action='store_false')
+ parser.add_argument('-v', dest='verbose', action='store_true',
+ help='verbose output')
parser.set_defaults(dryrun=False)
args = parser.parse_args()
+ if args.verbose:
+ logging.basicConfig(level=logging.DEBUG)
+ else:
+ logging.basicConfig(level=logging.ERROR)
+
# they're a first-timer, post the message on 1st patchset
if is_newbie(args.uploader) and args.patchset == 1 and not args.dryrun:
post_message(args.change, args.user, args.ssh_key)