I have been getting several errors similar to this one:
(node:30892) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 5): SyntaxError
From these questions (What is Unhandled Promise Rejection and NodeJS UnhandledPromiseRejectionWarning) it seems that these warnings are caused by not having a .catch on a promise after a chain of .then
However, these warnings do not have a file or line number where the problem lies. Is there any way to find this out/narrow it down?