Skip to content

Commit c61596b

Browse files
authored
cleanup: remove debug statements (#1692)
1 parent f9a9535 commit c61596b

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

core/packages/gax-nodejs/gax/src/paginationCalls/pagedApiCaller.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,13 @@ export class PagedApiCaller implements APICaller {
153153
ongoingCall.call(apiCall, request);
154154
return;
155155
}
156-
console.log('155', request, settings);
157156
if (request.pageSize && settings.autoPaginate) {
158157
warn(
159158
'autoPaginate true',
160159
'Providing a pageSize without setting autoPaginate to false will still return all results. See https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#auto-pagination for more information on how to configure manual paging',
161160
'AutopaginateTrueWarning'
162161
);
163162
}
164-
console.log(request.pageSize && settings.autoPaginate);
165163

166164
const maxResults = settings.maxResults || -1;
167165

0 commit comments

Comments
 (0)