mirror of https://github.com/pulumi/pulumi.git
b06a708f11
I noticed in our Docker builds, we often end up seeing %(MISSING)! style messages, which were an indication we were trying to format them. The reason was the presence of %c's in the stream, and the fact that we passed said messages to Fprintf. We were careful in all other layers to use the message on the "right hand side" of any *f calls, but in this instance, we used Fprintf and passed the message on the "left hand side", triggering formatting. It turns out we've already formatted everything by the time we get here, so there's no need -- we can just use Fprint instead. |
||
---|---|---|
.. | ||
colors | ||
diag.go | ||
doc.go | ||
pos.go | ||
sink.go | ||
sink_test.go |