summaryrefslogtreecommitdiffstats
path: root/repo_trace.py
diff options
context:
space:
mode:
authorLaMont Jones <lamontjones@google.com>2022-11-10 00:11:51 +0000
committerLaMont Jones <lamontjones@google.com>2022-11-10 00:44:33 +0000
commit47020ba249c39783a66c0031fd9200caecfbbdc8 (patch)
tree164f70aa5a05e306538dcb42d52e38416bd8ef29 /repo_trace.py
parent5ed8c639421c1669b5a945114bc169722b242697 (diff)
downloadgit-repo-47020ba249c39783a66c0031fd9200caecfbbdc8.tar.gz
trace: restore Progress indicator.v2.29.9
If we are not tracing to stderr, then we should still have progress indication. Change-Id: Ifc9678e1fccbd92251e972fcf25aad6369d60e15 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/351195 Reviewed-by: Sam Saccone <samccone@google.com> Tested-by: LaMont Jones <lamontjones@google.com> Reviewed-by: Xin Li <delphij@google.com>
Diffstat (limited to 'repo_trace.py')
-rw-r--r--repo_trace.py11
1 files changed, 3 insertions, 8 deletions
diff --git a/repo_trace.py b/repo_trace.py
index 86cbfc62..9016cb0c 100644
--- a/repo_trace.py
+++ b/repo_trace.py
@@ -32,19 +32,14 @@ REPO_TRACE = 'REPO_TRACE'
32 32
33# Temporarily set tracing to always on unless user expicitly sets to 0. 33# Temporarily set tracing to always on unless user expicitly sets to 0.
34_TRACE = os.environ.get(REPO_TRACE) != '0' 34_TRACE = os.environ.get(REPO_TRACE) != '0'
35
36_TRACE_TO_STDERR = False 35_TRACE_TO_STDERR = False
37
38_TRACE_FILE = None 36_TRACE_FILE = None
39
40_TRACE_FILE_NAME = 'TRACE_FILE' 37_TRACE_FILE_NAME = 'TRACE_FILE'
41
42_MAX_SIZE = 70 # in mb 38_MAX_SIZE = 70 # in mb
43
44_NEW_COMMAND_SEP = '+++++++++++++++NEW COMMAND+++++++++++++++++++' 39_NEW_COMMAND_SEP = '+++++++++++++++NEW COMMAND+++++++++++++++++++'
45 40
46 41
47def IsStraceToStderr(): 42def IsTraceToStderr():
48 return _TRACE_TO_STDERR 43 return _TRACE_TO_STDERR
49 44
50 45
@@ -90,7 +85,7 @@ class Trace(ContextDecorator):
90 if not IsTrace(): 85 if not IsTrace():
91 return self 86 return self
92 87
93 print_msg = f"PID: {os.getpid()} START: {self._time()} :" + self._trace_msg + '\n' 88 print_msg = f'PID: {os.getpid()} START: {self._time()} :' + self._trace_msg + '\n'
94 89
95 with open(_TRACE_FILE, 'a') as f: 90 with open(_TRACE_FILE, 'a') as f:
96 print(print_msg, file=f) 91 print(print_msg, file=f)
@@ -104,7 +99,7 @@ class Trace(ContextDecorator):
104 if not IsTrace(): 99 if not IsTrace():
105 return False 100 return False
106 101
107 print_msg = f"PID: {os.getpid()} END: {self._time()} :" + self._trace_msg + '\n' 102 print_msg = f'PID: {os.getpid()} END: {self._time()} :' + self._trace_msg + '\n'
108 103
109 with open(_TRACE_FILE, 'a') as f: 104 with open(_TRACE_FILE, 'a') as f:
110 print(print_msg, file=f) 105 print(print_msg, file=f)