@Download in version one, I could write a positional string formatter.
log.debug('setting return-url: %s', uri);
Now, it seems the default is to use template strings (presumably kurly);
log.debug(`setting return-url: ${uri}`);
With my old format, I now get

I can't quite grok how to swap back to the original format. Is is possible?
Cheers
ps I have been sitting on this change for quite a while and only now trying to address it.