I am currently debugging a SMTP issue where configAddress is not set even though it is set in config.development.json
(same config works in production, but not locally).
I added console.log({requestedFromAddress, configAddress, address})
after const address = requestedFromAddress || configAddress;
.
How can I see output of console.log? Tried using ghost run
, but run
appears to not use config.development.json
.
Thanks for helping out!