(ctx context.Context, req *QueryPushRulesRequest, res *QueryPushRulesResponse)
| 172 | return err |
| 173 | } |
| 174 | func (t *UserInternalAPITrace) QueryPushRules(ctx context.Context, req *QueryPushRulesRequest, res *QueryPushRulesResponse) error { |
| 175 | err := t.Impl.QueryPushRules(ctx, req, res) |
| 176 | util.GetLogger(ctx).Infof("QueryPushRules req=%+v res=%+v", js(req), js(res)) |
| 177 | return err |
| 178 | } |
| 179 | func (t *UserInternalAPITrace) QueryNotifications(ctx context.Context, req *QueryNotificationsRequest, res *QueryNotificationsResponse) error { |
| 180 | err := t.Impl.QueryNotifications(ctx, req, res) |
| 181 | util.GetLogger(ctx).Infof("QueryNotifications req=%+v res=%+v", js(req), js(res)) |
nothing calls this directly
no test coverage detected