We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 558a5bc commit efeaf68Copy full SHA for efeaf68
src/server/GRPCServerImpl.ts
@@ -130,8 +130,8 @@ export class GRPCServerImpl implements IAppCallbackServer {
130
async listTopicSubscriptions(_call: grpc.ServerUnaryCall<Empty, ListTopicSubscriptionsResponse>,
131
callback: grpc.sendUnaryData<ListTopicSubscriptionsResponse>): Promise<void> {
132
const res = new ListTopicSubscriptionsResponse();
133
- debug('listTopicSubscriptions call: %j', this.subscriptionsList);
134
res.setSubscriptionsList(this.subscriptionsList);
+ this.logger.info('[layotto:server:listTopicSubscriptions] return response %j', res.toObject());
135
callback(null, res);
136
}
137
0 commit comments