Comment 4 for bug 681304

Revision history for this message
Alexander Belchenko (bialix) wrote :

@Charon: to write debug message you need the following code:

at the beginning of the module add import:

from bzrlib.trace import mutter

and then in the code you want to trace:

mutter("your debug message here")

It will go to .bzr.log only.