##// END OF EJS Templates
log: do not hide the public phase in debug mode (BC)...
Jordi Gutiérrez Hermoso -
r22765:55dcc7fb default
parent child Browse files
Show More
@@ -916,7 +916,7 b' class changeset_printer(object):'
916 # i18n: column positioning for "hg log"
916 # i18n: column positioning for "hg log"
917 self.ui.write(_("tag: %s\n") % tag,
917 self.ui.write(_("tag: %s\n") % tag,
918 label='log.tag')
918 label='log.tag')
919 if self.ui.debugflag and ctx.phase():
919 if self.ui.debugflag:
920 # i18n: column positioning for "hg log"
920 # i18n: column positioning for "hg log"
921 self.ui.write(_("phase: %s\n") % _(ctx.phasestr()),
921 self.ui.write(_("phase: %s\n") % _(ctx.phasestr()),
922 label='log.phase')
922 label='log.phase')
@@ -208,6 +208,7 b' properly recursive'
208
208
209 $ hg dln
209 $ hg dln
210 changeset: -1:0000000000000000000000000000000000000000
210 changeset: -1:0000000000000000000000000000000000000000
211 phase: public
211 parent: -1:0000000000000000000000000000000000000000
212 parent: -1:0000000000000000000000000000000000000000
212 parent: -1:0000000000000000000000000000000000000000
213 parent: -1:0000000000000000000000000000000000000000
213 manifest: -1:0000000000000000000000000000000000000000
214 manifest: -1:0000000000000000000000000000000000000000
@@ -234,6 +234,7 b' Testing --debug:'
234 $ hg --cwd c log --debug
234 $ hg --cwd c log --debug
235 changeset: 1:b6c483daf2907ce5825c0bb50f5716226281cc1a
235 changeset: 1:b6c483daf2907ce5825c0bb50f5716226281cc1a
236 tag: tip
236 tag: tip
237 phase: public
237 parent: -1:0000000000000000000000000000000000000000
238 parent: -1:0000000000000000000000000000000000000000
238 parent: -1:0000000000000000000000000000000000000000
239 parent: -1:0000000000000000000000000000000000000000
239 manifest: 1:23226e7a252cacdc2d99e4fbdc3653441056de49
240 manifest: 1:23226e7a252cacdc2d99e4fbdc3653441056de49
@@ -246,6 +247,7 b' Testing --debug:'
246
247
247
248
248 changeset: 0:8580ff50825a50c8f716709acdf8de0deddcd6ab
249 changeset: 0:8580ff50825a50c8f716709acdf8de0deddcd6ab
250 phase: public
249 parent: -1:0000000000000000000000000000000000000000
251 parent: -1:0000000000000000000000000000000000000000
250 parent: -1:0000000000000000000000000000000000000000
252 parent: -1:0000000000000000000000000000000000000000
251 manifest: 0:a0c8bcbbb45c63b90b70ad007bf38961f64f2af0
253 manifest: 0:a0c8bcbbb45c63b90b70ad007bf38961f64f2af0
@@ -340,6 +340,7 b' test that phase are displayed in log at '
340
340
341
341
342 changeset: 1:27547f69f25460a52fff66ad004e58da7ad3fb56
342 changeset: 1:27547f69f25460a52fff66ad004e58da7ad3fb56
343 phase: public
343 parent: 0:4a2df7238c3b48766b5e22fafbb8a2f506ec8256
344 parent: 0:4a2df7238c3b48766b5e22fafbb8a2f506ec8256
344 parent: -1:0000000000000000000000000000000000000000
345 parent: -1:0000000000000000000000000000000000000000
345 manifest: 1:cb5cbbc1bfbf24cc34b9e8c16914e9caa2d2a7fd
346 manifest: 1:cb5cbbc1bfbf24cc34b9e8c16914e9caa2d2a7fd
@@ -352,6 +353,7 b' test that phase are displayed in log at '
352
353
353
354
354 changeset: 0:4a2df7238c3b48766b5e22fafbb8a2f506ec8256
355 changeset: 0:4a2df7238c3b48766b5e22fafbb8a2f506ec8256
356 phase: public
355 parent: -1:0000000000000000000000000000000000000000
357 parent: -1:0000000000000000000000000000000000000000
356 parent: -1:0000000000000000000000000000000000000000
358 parent: -1:0000000000000000000000000000000000000000
357 manifest: 0:007d8c9d88841325f5c6b06371b35b4e8a2b1a83
359 manifest: 0:007d8c9d88841325f5c6b06371b35b4e8a2b1a83
General Comments 0
You need to be logged in to leave comments. Login now