Show More
@@ -208,15 +208,10 b' class server(object):' | |||||
208 | def __init__(self, ui, repo, fin, fout): |
|
208 | def __init__(self, ui, repo, fin, fout): | |
209 | self.cwd = encoding.getcwd() |
|
209 | self.cwd = encoding.getcwd() | |
210 |
|
210 | |||
211 |
|
|
211 | if ui.config("cmdserver", "log") == '-': | |
212 | logpath = ui.config("cmdserver", "log") |
|
|||
213 | if logpath: |
|
|||
214 | global logfile |
|
212 | global logfile | |
215 | if logpath == '-': |
|
213 | # switch log stream to the 'd' (debug) channel | |
216 | # write log on a special 'd' (debug) channel |
|
|||
217 |
|
|
214 | logfile = channeledoutput(fout, 'd') | |
218 | else: |
|
|||
219 | logfile = open(logpath, 'a') |
|
|||
220 |
|
215 | |||
221 | if repo: |
|
216 | if repo: | |
222 | # the ui here is really the repo ui so take its baseui so we don't |
|
217 | # the ui here is really the repo ui so take its baseui so we don't | |
@@ -361,6 +356,24 b' class server(object):' | |||||
361 |
|
356 | |||
362 | return 0 |
|
357 | return 0 | |
363 |
|
358 | |||
|
359 | def setuplogging(ui): | |||
|
360 | """Set up server logging facility | |||
|
361 | ||||
|
362 | If cmdserver.log is '-', log messages will be sent to the 'd' channel | |||
|
363 | while a client is connected. Otherwise, messages will be written to | |||
|
364 | the stderr of the server process. | |||
|
365 | """ | |||
|
366 | # developer config: cmdserver.log | |||
|
367 | logpath = ui.config(b'cmdserver', b'log') | |||
|
368 | if not logpath: | |||
|
369 | return | |||
|
370 | ||||
|
371 | global logfile | |||
|
372 | if logpath == b'-': | |||
|
373 | logfile = ui.ferr | |||
|
374 | else: | |||
|
375 | logfile = open(logpath, 'ab') | |||
|
376 | ||||
364 | class pipeservice(object): |
|
377 | class pipeservice(object): | |
365 | def __init__(self, ui, repo, opts): |
|
378 | def __init__(self, ui, repo, opts): | |
366 | self.ui = ui |
|
379 | self.ui = ui |
@@ -155,9 +155,11 b' def runservice(opts, parentfn=None, init' | |||||
155 | def _createcmdservice(ui, repo, opts): |
|
155 | def _createcmdservice(ui, repo, opts): | |
156 | mode = opts['cmdserver'] |
|
156 | mode = opts['cmdserver'] | |
157 | try: |
|
157 | try: | |
158 |
|
|
158 | servicefn = _cmdservicemap[mode] | |
159 | except KeyError: |
|
159 | except KeyError: | |
160 | raise error.Abort(_('unknown mode %s') % mode) |
|
160 | raise error.Abort(_('unknown mode %s') % mode) | |
|
161 | commandserver.setuplogging(ui) | |||
|
162 | return servicefn(ui, repo, opts) | |||
161 |
|
163 | |||
162 | def _createhgwebservice(ui, repo, opts): |
|
164 | def _createhgwebservice(ui, repo, opts): | |
163 | # this way we can check if something was given in the command-line |
|
165 | # this way we can check if something was given in the command-line |
General Comments 0
You need to be logged in to leave comments.
Login now