diff --git a/src/server/GRPCServerImpl.ts b/src/server/GRPCServerImpl.ts index b88956b..ebcfe20 100644 --- a/src/server/GRPCServerImpl.ts +++ b/src/server/GRPCServerImpl.ts @@ -130,8 +130,8 @@ export class GRPCServerImpl implements IAppCallbackServer { async listTopicSubscriptions(_call: grpc.ServerUnaryCall, callback: grpc.sendUnaryData): Promise { const res = new ListTopicSubscriptionsResponse(); - debug('listTopicSubscriptions call: %j', this.subscriptionsList); res.setSubscriptionsList(this.subscriptionsList); + this.logger.info('[layotto:server:listTopicSubscriptions] return response %j', res.toObject()); callback(null, res); } }