Image uploads filling Heroku log output

Hello, thanks for your reply!
We didn’t set ā€œverboseā€, so we just tested with ā€œverbose: falseā€ in index.js, but it still shows big logs on heroku when any image is uploaded.
We upload image by cloud code (to AWS) by something like:

const imageTest = request.params.imageTest;
var image1= new Parse.File(ā€œimage.jpgā€, imageTest);
post.set(ā€œimageā€, image1);

Do you have any idea why??