I have a class that inherits from *rpyc.Service* (lets call it MyService) and i initiate a server via the command *rpyc.utils.server.ThreadServer(MyServer, port)*.
I start the server and then connect to it from the client using the command: rpyc.connect(server_ip, port). I now have 2 questions: 1) if i add/change default params in the config_dict, do i need to add them on both the client and server end? 2) if i add a logger instance at the client end via the key 'logger', how do i access it at the server end? do i have to add something to the "on_connect" method of MyService? thx
