From 8c8b47c0c8cd80d1ff64780b9893d068439ead14 Mon Sep 17 00:00:00 2001 From: Taras Madan Date: Tue, 10 Sep 2024 12:34:20 +0200 Subject: all: follow new linter recommendations --- vm/starnix/starnix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vm/starnix') diff --git a/vm/starnix/starnix.go b/vm/starnix/starnix.go index f722badcf..8050760d0 100644 --- a/vm/starnix/starnix.go +++ b/vm/starnix/starnix.go @@ -283,7 +283,7 @@ func (inst *instance) connect() error { return err } if inst.debug { - log.Logf(0, fmt.Sprintf("instance %s: the fuchsia instance's address is %s", inst.name, address)) + log.Logf(0, "instance %s: the fuchsia instance's address is %s", inst.name, address) } cmd := osutil.Command( "ssh", -- cgit mrf-deployment