##// END OF EJS Templates
profile: disable nested report in lsprof by default...
Matt Mackall -
r25277:0f2dcbcc default
parent child Browse files
Show More
@@ -898,7 +898,7 b' def lsprofile(ui, func, fp):'
898 format = ui.config('profiling', 'format', default='text')
898 format = ui.config('profiling', 'format', default='text')
899 field = ui.config('profiling', 'sort', default='inlinetime')
899 field = ui.config('profiling', 'sort', default='inlinetime')
900 limit = ui.configint('profiling', 'limit', default=30)
900 limit = ui.configint('profiling', 'limit', default=30)
901 climit = ui.configint('profiling', 'nested', default=5)
901 climit = ui.configint('profiling', 'nested', default=0)
902
902
903 if format not in ['text', 'kcachegrind']:
903 if format not in ['text', 'kcachegrind']:
904 ui.warn(_("unrecognized profiling format '%s'"
904 ui.warn(_("unrecognized profiling format '%s'"
General Comments 0
You need to be logged in to leave comments. Login now