From 497ec1376ab510af740910ed9c99b159809cf0e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Mur=C3=A9?= Date: Mon, 9 Nov 2020 00:35:06 +0100 Subject: [PATCH] bug: debug --- bug/bug.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bug/bug.go b/bug/bug.go index e67920f9aa40fe60837899300051401d60861de3..86227c6ba2892e399b2f102b43c774fa93cf99dc 100644 --- a/bug/bug.go +++ b/bug/bug.go @@ -321,6 +321,8 @@ func (bug *Bug) Validate() error { // The bug Id should be the id of the first operation if bug.FirstOp().Id() != bug.id { + fmt.Println("bug", bug.id.String()) + fmt.Println("op", bug.FirstOp().Id().String()) return fmt.Errorf("bug id should be the first commit hash") }