(Config config)
| 23 | private final Client client; |
| 24 | |
| 25 | public LogAgent(Config config) throws Exception { |
| 26 | this.conf = config; |
| 27 | logConf = new LogServiceConf(); |
| 28 | config.parseCustomize(logConf); |
| 29 | serviceManager = Application.createServiceManager(conf, "LogServiceServer"); |
| 30 | client = new Client(logConf, conf); |
| 31 | RegisterProtocols(client); |
| 32 | } |
| 33 | |
| 34 | public LogServiceConf getLogConf() { |
| 35 | return logConf; |
nothing calls this directly
no test coverage detected