Browse Source

Report which RPC interfaces are initialized during startup.

Chris McDonough 18 years ago
parent
commit
f8ec9bd2c8
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/supervisor/http.py

+ 1 - 0
src/supervisor/http.py

@@ -761,6 +761,7 @@ def make_http_server(options, supervisord):
             import traceback; traceback.print_exc()
             raise ValueError('Could not make %s rpc interface' % name)
         subinterfaces.append((name, inst))
+        options.logger.info('RPC interface %r initialized' % name)
         
     subinterfaces.append(('system', SystemNamespaceRPCInterface(subinterfaces)))
     xmlrpchandler = supervisor_xmlrpc_handler(supervisord, subinterfaces)