[Pkg-bazaar-commits] ./bzr/unstable r333: - allow trace file to grow up to 4MB

Martin Pool mbp at sourcefrog.net
Fri Apr 10 07:51:52 UTC 2009


------------------------------------------------------------
revno: 333
committer: Martin Pool <mbp at sourcefrog.net>
timestamp: Tue 2005-05-03 17:57:06 +1000
message:
  - allow trace file to grow up to 4MB
modified:
  bzrlib/trace.py
-------------- next part --------------
=== modified file 'bzrlib/trace.py'
--- a/bzrlib/trace.py	2005-04-15 03:33:18 +0000
+++ b/bzrlib/trace.py	2005-05-03 07:57:06 +0000
@@ -80,7 +80,7 @@
 def _rollover_trace_maybe(trace_fname):
     try:
         size = os.stat(trace_fname)[stat.ST_SIZE]
-        if size <= 1 << 20:
+        if size <= 4 << 20:
             return
         old_fname = trace_fname + '.old'
 



More information about the Pkg-bazaar-commits mailing list