Sam Sussman

Results 112 comments of Sam Sussman

Whare are you looking for here? ![image](https://user-images.githubusercontent.com/289213/172377646-5af5857a-3b52-4739-8382-4bddb247942a.png)

![image](https://user-images.githubusercontent.com/289213/172377757-310ef3bc-815e-4b17-81cf-858bc4039673.png)

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...