From 6398230f8437adad4b46a830f185f2e0d2726e3f Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Mon, 6 Jun 2022 11:13:04 +0900 Subject: [PATCH] internal/graphicscommand: add 'screen' info to (*newImageCommand).String() --- internal/graphicscommand/command.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/graphicscommand/command.go b/internal/graphicscommand/command.go index d8b6ae7b5..f55afac1f 100644 --- a/internal/graphicscommand/command.go +++ b/internal/graphicscommand/command.go @@ -619,7 +619,7 @@ type newImageCommand struct { } func (c *newImageCommand) String() string { - return fmt.Sprintf("new-image: result: %d, width: %d, height: %d", c.result.id, c.width, c.height) + return fmt.Sprintf("new-image: result: %d, width: %d, height: %d, screen: %t", c.result.id, c.width, c.height, c.screen) } // Exec executes a newImageCommand.