This is maybe not the best way to go about fixing this, but anything
is better than the status quo.
Details
- Reviewers
- None
- Group Reviewers
hg-reviewers - Commits
- rHG56132ebd14c6: blackbox: disable extremely verbose logging (issue6110)
rHG341222d54bea: blackbox: disable extremely verbose logging (issue6110)
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
Event Timeline
hgext/blackbox.py | ||
---|---|---|
97 | Let's make this configurable, and this is the default. Maybe blackbox.ignore, with a default of the things you've specified? |
hgext/blackbox.py | ||
---|---|---|
97 | I made the ignore list configurable, although it seems to be of limited utility: you can replace the default, but extending seems like the more useful thing to do. Extending the list requires repeating the default, and the default may not be particularly stable across versions. I changed the priority of tracked and ignored, so tracked takes predecence. This means that tracked = *, cmdserver would log cmdserver events, as that seems a bit better to me and maybe that's why you wanted the configurability. |
Let's make this configurable, and this is the default. Maybe blackbox.ignore, with a default of the things you've specified?