tags:

views:

28

answers:

2

Where is the format of the file .bzr.log documented?

+1  A: 

.bzr.log is not supposed to be machine-readable format, it's debug log in human-readable format, in which different parts of bzrlib write some runtime information.

As of today standard Python library logging used for writing to .bzr.log. You can find the note/info/warning/mutter methods in bzrlib/trace.py module.

bialix