aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/email
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2024-06-12 15:40:41 +0200
committerAleksandr Nogikh <nogikh@google.com>2024-06-12 13:50:02 +0000
commit2aa5052fed5f8993afacfce02174322df0f03ec4 (patch)
tree2433f189e37f5c4c83830c8a428032692ebffbbe /pkg/email
parentf815599d9539b0606408a912fe53e2e80bbc4629 (diff)
pkg/email: remove the debugging code
This is not needed for the actual operation.
Diffstat (limited to 'pkg/email')
-rw-r--r--pkg/email/parser.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/email/parser.go b/pkg/email/parser.go
index efc63391b..e8aa1a8c0 100644
--- a/pkg/email/parser.go
+++ b/pkg/email/parser.go
@@ -302,7 +302,6 @@ func extractCommand(body string) (*SingleCommand, int) {
} else {
// For "#syz test", it's likely there won't be anything else, so let's only parse
// the first line.
- fmt.Printf("line: %s", body[cmdPos+cmdEnd:])
args = extractArgsLine(body[cmdPos+cmdEnd:], false)
}
case CmdSet, CmdUnset: