Parse server logging

hi there … since console.log is synchronous is it okay to use it on cloud code ?

Yes, it is completely fine to use console.log(...). However, I would recommend using the inbuilt logger via request.log.info(...) so that you can the logs can be seen on the Parse Dashboard too.

3 Likes