~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/trace.py

  • Committer: Martin Pool
  • Date: 2005-05-05 06:38:18 UTC
  • Revision ID: mbp@sourcefrog.net-20050505063818-3eb3260343878325
- do upload CHANGELOG to web server, even though it's autogenerated

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
14
14
 
15
15
 
16
 
 
17
 
# TODO: Could probably replace this with something based on Python logging
18
 
# module.
19
 
 
20
 
 
21
 
 
22
 
 
23
16
__copyright__ = "Copyright (C) 2005 Canonical Ltd."
24
17
__author__ = "Martin Pool <mbp@canonical.com>"
25
18
 
31
24
 
32
25
 
33
26
import sys, os
 
27
import bzrlib
34
28
 
35
29
######################################################################
36
30
# messages and logging
100
94
 
101
95
 
102
96
 
103
 
def open_tracefile(argv=[], tracefilename='~/.bzr.log'):
 
97
def open_tracefile(argv):
104
98
    # Messages are always written to here, so that we have some
105
99
    # information if something goes wrong.  In a future version this
106
100
    # file will be removed on successful completion.
109
103
 
110
104
    _starttime = os.times()[4]
111
105
 
112
 
    trace_fname = os.path.join(os.path.expanduser(tracefilename))
 
106
    trace_fname = os.path.join(os.path.expanduser('~/.bzr.log'))
113
107
    _rollover_trace_maybe(trace_fname)
114
108
 
115
109
    # buffering=1 means line buffered
116
 
    try:
117
 
        _tracefile = codecs.open(trace_fname, 'at', 'utf8', buffering=1)
118
 
        t = _tracefile
119
 
 
120
 
        if os.fstat(t.fileno())[stat.ST_SIZE] == 0:
121
 
            t.write("\nthis is a debug log for diagnosing/reporting problems in bzr\n")
122
 
            t.write("you can delete or truncate this file, or include sections in\n")
123
 
            t.write("bug reports to bazaar-ng@lists.canonical.com\n\n")
124
 
 
125
 
        import bzrlib
126
 
        _write_trace('bzr %s invoked on python %s (%s)'
127
 
                     % (bzrlib.__version__,
128
 
                        '.'.join(map(str, sys.version_info)),
129
 
                        sys.platform))
130
 
 
131
 
        _write_trace('  arguments: %r' % argv)
132
 
        _write_trace('  working dir: ' + os.getcwdu())
133
 
    except IOError, e:
134
 
        warning("failed to open trace file: %s" % (e))
 
110
    _tracefile = codecs.open(trace_fname, 'at', 'utf8', buffering=1)
 
111
    t = _tracefile
 
112
 
 
113
    if os.fstat(t.fileno())[stat.ST_SIZE] == 0:
 
114
        t.write("\nthis is a debug log for diagnosing/reporting problems in bzr\n")
 
115
        t.write("you can delete or truncate this file, or include sections in\n")
 
116
        t.write("bug reports to bazaar-ng@lists.canonical.com\n\n")
 
117
 
 
118
    # TODO: If we failed to create the file, perhaps give a warning
 
119
    # but don't abort; send things to /dev/null instead?
 
120
 
 
121
    _write_trace('bzr %s invoked on python %s (%s)'
 
122
                 % (bzrlib.__version__,
 
123
                    '.'.join(map(str, sys.version_info)),
 
124
                    sys.platform))
 
125
 
 
126
    _write_trace('  arguments: %r' % argv)
 
127
    _write_trace('  working dir: ' + os.getcwdu())
 
128
 
135
129
 
136
130
def close_trace():
137
131
    times = os.times()