Sam Sussman
Sam Sussman
Whare are you looking for here? 

Looks like adding the icon to the text.
Cleaned it up a bit. https://github.com/functionless/functionless/pull/196/#issuecomment-1149159558
https://deepkit.io/documentation/type/reflection
```velocity $util.log.info("hi") ## works $util.log.info("hi", "hi") ## only prints the first $util.log.info("hi {}", "hi") ## works $util.log.info("hi %s", "hi") ## invalid formatting $util.log.info("hi %d", 1) ## Invalid formatting $util.log.info(1, 2,...
``` console.log("hi {}", "hi") VM171:1 hi {} hi undefined console.log("hi", "hi") VM218:1 hi hi undefined console.log("hi %s", "hi") VM249:1 hi hi undefined console.log("hi %s", "hi", "hi") VM336:1 hi hi hi...
App Sync * Only supports `{}` for formatting * Does not print mis-matches arguments and formatting expressions * supports error and info log levels Typescript/Javascript * supports formatting expressions *...
It is, isn't it? https://github.com/functionless/functionless/blob/main/package.json#L82
If you are using the CDK cli and auto-synth, there is nothing to do. If you are programmatically calling synth for something like tests, you can either use `asyncSynth` (exported...