From: Zooko O'Whielacronx Date: Fri, 25 May 2007 22:49:57 +0000 (-0700) Subject: amdlib.util: merge in changes to humanreadable.py that were made in pyutil X-Git-Tag: allmydata-tahoe-0.3.0~49 X-Git-Url: https://git.rkrishnan.org/frontends/FTP-and-SFTP.rst?a=commitdiff_plain;h=763cfc7874def38351b9c2f671f14cfa55d3d347;p=tahoe-lafs%2Ftahoe-lafs.git amdlib.util: merge in changes to humanreadable.py that were made in pyutil --- diff --git a/src/allmydata/util/humanreadable.py b/src/allmydata/util/humanreadable.py index bae826c5..5adf13ec 100644 --- a/src/allmydata/util/humanreadable.py +++ b/src/allmydata/util/humanreadable.py @@ -1,5 +1,5 @@ # Copyright (c) 2001 Autonomous Zone Industries -# Copyright (c) 2002-2005 Bryce "Zooko" Wilcox-O'Hearn +# Copyright (c) 2002-2007 Bryce "Zooko" Wilcox-O'Hearn # This file is licensed under the # GNU Lesser General Public License v2.1. # See the file COPYING or visit http://www.gnu.org/ for details. @@ -11,24 +11,13 @@ class BetterRepr(Repr): def __init__(self): Repr.__init__(self) - # Note: These levels can get adjusted dynamically! My goal is to get - # more info when printing important debug stuff like exceptions and - # stack traces and less info when logging normal events. - # --Zooko 2000-10-14 - if 0: # DEBUG MODE - self.maxlevel = 24 - self.maxdict = 24 - self.maxlist = 24 - self.maxtuple = 24 - self.maxstring = 800 - self.maxother = 800 - else: - self.maxlevel = 6 - self.maxdict = 6 - self.maxlist = 6 - self.maxtuple = 6 - self.maxstring = 300 - self.maxother = 300 + # Note: These levels can get adjusted dynamically! My goal is to get more info when printing important debug stuff like exceptions and stack traces and less info when logging normal events. --Zooko 2000-10-14 + self.maxlevel = 6 + self.maxdict = 6 + self.maxlist = 6 + self.maxtuple = 6 + self.maxstring = 300 + self.maxother = 300 def repr_function(self, obj, level): if hasattr(obj, 'func_code'):