mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
do not log client-side RPC executions
This commit is contained in:
parent
570c0aeca3
commit
62e6ca50e1
1 changed files with 2 additions and 1 deletions
|
@ -343,7 +343,6 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
# todo: defer this to gui
|
# todo: defer this to gui
|
||||||
config = SimpleConfig(config_options)
|
config = SimpleConfig(config_options)
|
||||||
configure_logging(config)
|
|
||||||
|
|
||||||
cmdname = config.get('cmd')
|
cmdname = config.get('cmd')
|
||||||
|
|
||||||
|
@ -355,6 +354,7 @@ if __name__ == '__main__':
|
||||||
constants.set_simnet()
|
constants.set_simnet()
|
||||||
|
|
||||||
if cmdname == 'gui':
|
if cmdname == 'gui':
|
||||||
|
configure_logging(config)
|
||||||
fd, server = daemon.get_fd_or_server(config)
|
fd, server = daemon.get_fd_or_server(config)
|
||||||
if fd is not None:
|
if fd is not None:
|
||||||
plugins = init_plugins(config, config.get('gui', 'qt'))
|
plugins = init_plugins(config, config.get('gui', 'qt'))
|
||||||
|
@ -370,6 +370,7 @@ if __name__ == '__main__':
|
||||||
init_daemon(config_options)
|
init_daemon(config_options)
|
||||||
|
|
||||||
if subcommand in [None, 'start']:
|
if subcommand in [None, 'start']:
|
||||||
|
configure_logging(config)
|
||||||
fd, server = daemon.get_fd_or_server(config)
|
fd, server = daemon.get_fd_or_server(config)
|
||||||
if fd is not None:
|
if fd is not None:
|
||||||
if subcommand == 'start':
|
if subcommand == 'start':
|
||||||
|
|
Loading…
Add table
Reference in a new issue