Skip to content

Commit

Permalink
DOP-4599 logging
Browse files Browse the repository at this point in the history
  • Loading branch information
anabellabuckvar committed Jun 14, 2024
1 parent 8c37f85 commit fc2f934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/repositories/baseRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export abstract class BaseRepository {

protected async insertMany(docs: Array<any>, errorMsg: string): Promise<any> {
try {
console.log('inserting many');
console.log('inserting many', JSON.stringify(docs));
const insertManyResult = await this.promiseTimeoutS(
this._config.get('MONGO_TIMEOUT_S'),
this._collection.insertMany(docs),
Expand Down

0 comments on commit fc2f934

Please sign in to comment.