~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/trace.py

  • Committer: Robert Collins
  • Date: 2005-10-09 23:12:35 UTC
  • Revision ID: robertc@robertcollins.net-20051009231235-93626e72cac71b78
clean up test dirs on make clean

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
    The exception string representation is used as the error
162
162
    summary, unless msg is given.
163
163
    """
164
 
    command = ' '.join(repr(arg) for arg in sys.argv)
165
 
    prefix = "command: %s\npwd: %s\n" % (command, os.getcwd())
166
164
    if msg == None:
167
165
        ei = sys.exc_info()
168
166
        msg = str(ei[1])
169
167
    if msg and (msg[-1] == '\n'):
170
168
        msg = msg[:-1]
171
169
    ## msg = "(%s) %s" % (str(type(ei[1])), msg)
172
 
    _bzr_logger.exception(prefix + msg)
 
170
    _bzr_logger.exception(msg)
173
171
 
174
172
 
175
173