CW Holeman II
CW Holeman II

Reputation: 4961

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

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

Upvotes: 1

Views: 167

Answers (2)

CW Holeman II
CW Holeman II

Reputation: 4961

See: Bazaar User Reference Log formats section.

Upvotes: 1

bialix
bialix

Reputation: 21473

.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.

Upvotes: 4

Related Questions