Mercurial > hg-stable
changeset 28303:ce24de063aa5
blackbox: rewrite dirty documentation noting it is expensive
author | timeless <timeless@mozdev.org> |
---|---|
date | Tue, 01 Mar 2016 10:43:52 +0000 |
parents | e96a3ae025ed |
children | 6b38888ab033 |
files | hgext/blackbox.py |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/blackbox.py Tue Mar 01 09:49:38 2016 +0000 +++ b/hgext/blackbox.py Tue Mar 01 10:43:52 2016 +0000 @@ -11,13 +11,12 @@ Logs event information to .hg/blackbox.log to help debug and diagnose problems. The events that get logged can be configured via the blackbox.track config key. -If you want to record whether the repository is dirty (a `+` sign, as you'd -get when using :hg:`id`), you can set the blackbox.dirty config key. - Examples:: [blackbox] track = * + # dirty is *EXPENSIVE* (slow); + # each log entry indicates `+` if the repository is dirty, like :hg:`id`. dirty = True [blackbox]