Skip to content

Commit 5fb359f

Browse files
committed
fix: remove debug statements (#1692)
1 parent fbd46bf commit 5fb359f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

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)