~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:24:20 UTC
  • Revision ID: mbp@sourcefrog.net-20050505062420-7c579c756f1a1d9e
- Import stat-cache code

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
52
46
 
53
47
 
54
48
def _write_trace(msg):
55
 
    if 0:
56
 
        if _tracefile:
57
 
            _tracefile.write(_logprefix + msg + '\n')
 
49
    if _tracefile:
 
50
        _tracefile.write(_logprefix + msg + '\n')
58
51
 
59
52
 
60
53
def warning(msg):
101
94
 
102
95
 
103
96
 
104
 
def open_tracefile(argv=[], tracefilename='~/.bzr.log'):
 
97
def open_tracefile(argv):
105
98
    # Messages are always written to here, so that we have some
106
99
    # information if something goes wrong.  In a future version this
107
100
    # file will be removed on successful completion.
110
103
 
111
104
    _starttime = os.times()[4]
112
105
 
113
 
    trace_fname = os.path.join(os.path.expanduser(tracefilename))
 
106
    trace_fname = os.path.join(os.path.expanduser('~/.bzr.log'))
114
107
    _rollover_trace_maybe(trace_fname)
115
108
 
116
109
    # buffering=1 means line buffered
117
 
    try:
118
 
        _tracefile = codecs.open(trace_fname, 'at', 'utf8', buffering=1)
119
 
        t = _tracefile
120
 
 
121
 
        if os.fstat(t.fileno())[stat.ST_SIZE] == 0:
122
 
            t.write("\nthis is a debug log for diagnosing/reporting problems in bzr\n")
123
 
            t.write("you can delete or truncate this file, or include sections in\n")
124
 
            t.write("bug reports to bazaar-ng@lists.canonical.com\n\n")
125
 
 
126
 
        import bzrlib
127
 
        _write_trace('bzr %s invoked on python %s (%s)'
128
 
                     % (bzrlib.__version__,
129
 
                        '.'.join(map(str, sys.version_info)),
130
 
                        sys.platform))
131
 
 
132
 
        _write_trace('  arguments: %r' % argv)
133
 
        _write_trace('  working dir: ' + os.getcwdu())
134
 
    except IOError, e:
135
 
        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
 
136
129
 
137
130
def close_trace():
138
131
    times = os.times()