aboutsummaryrefslogtreecommitdiff
path: root/progress.py
diff options
context:
space:
mode:
Diffstat (limited to 'progress.py')
-rw-r--r--progress.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/progress.py b/progress.py
index 580ae88..98bb642 100644
--- a/progress.py
+++ b/progress.py
@@ -14,6 +14,7 @@
# limitations under the License.
import sys
+from trace import IsTrace
class Progress(object):
def __init__(self, title, total=0):
@@ -25,6 +26,9 @@ class Progress(object):
def update(self, inc=1):
self._done += inc
+ if IsTrace():
+ return
+
if self._total <= 0:
sys.stderr.write('\r%s: %d, ' % (
self._title,
@@ -43,6 +47,9 @@ class Progress(object):
sys.stderr.flush()
def end(self):
+ if IsTrace():
+ return
+
if self._total <= 0:
sys.stderr.write('\r%s: %d, done. \n' % (
self._title,