remove console log

This commit is contained in:
Bassel 2023-02-24 14:51:10 +02:00
parent 4f9f0a11cd
commit c968b3e2d7
2 changed files with 0 additions and 5 deletions

View File

@ -171,12 +171,9 @@ class LocalStrapiDestinationProvider implements IDestinationProvider {
const entryPath = path.join(assetsDirectory, chunk.filename);
const writableStream = fse.createWriteStream(entryPath);
console.log('hello from the other side?');
chunk.stream
.pipe(writableStream)
.on('close', () => {
console.log('close/end substream');
callback(null);
})
.on('error', async (error: NodeJS.ErrnoException) => {

View File

@ -152,8 +152,6 @@ const createPushController = (options: ILocalStrapiDestinationProviderOptions):
});
}
}
console.log('[assets] done');
},
},
};