##// END OF EJS Templates
profiler: mark developer-only config option
Matt Mackall -
r25834:aca8ae2b default
parent child Browse files
Show More
@@ -938,6 +938,7 b' def flameprofile(ui, func, fp):'
938 raise util.Abort(_(
938 raise util.Abort(_(
939 'flamegraph not available - install from '
939 'flamegraph not available - install from '
940 'https://github.com/evanhempel/python-flamegraph'))
940 'https://github.com/evanhempel/python-flamegraph'))
941 # developer config: profiling.freq
941 freq = ui.configint('profiling', 'freq', default=1000)
942 freq = ui.configint('profiling', 'freq', default=1000)
942 filter_ = None
943 filter_ = None
943 collapse_recursion = True
944 collapse_recursion = True
General Comments 0
You need to be logged in to leave comments. Login now