Also print all status changes when using hg -v.
The start_status_thread call was lost during the refactoring in
https://golang.org/cl/
5395044/diff/6006/lib/codereview/codereview.py
Oops.
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/
7834044
global_status = None
def set_status(s):
- # print >>sys.stderr, "\t", time.asctime(), s
+ if verbosity > 0:
+ print >>sys.stderr, time.asctime(), s
global global_status
global_status = s
if codereview_init:
return
codereview_init = True
+ start_status_thread()
# Read repository-specific options from lib/codereview/codereview.cfg or codereview.cfg.
root = ''