Skip to content

Commit d60d70c

Browse files
authored
Merge pull request #3282 from konoui/fix-ecs-init-format-string
fix format string for ecs-init logging
2 parents 19cb51f + 903c6ee commit d60d70c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ecs-init/engine/engine.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ func (e *Engine) PreStart() error {
139139
if err != nil {
140140
return engineError("could not check Docker for Agent image presence", err)
141141
}
142-
log.Infof("pre-start: ecs agent container image loaded presence: %s", imageLoaded)
142+
log.Infof("pre-start: ecs agent container image loaded presence: %t", imageLoaded)
143143

144144
switch e.downloader.AgentCacheStatus() {
145145
// Uncached, go get the Agent.

0 commit comments

Comments
 (0)