From f7a145a002a9b5384eceb41f59c109821efad553 Mon Sep 17 00:00:00 2001 From: Simon Roberts Date: Sun, 5 Sep 2021 12:48:51 +1000 Subject: [PATCH] Fix another printf log --- cointop/navigation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cointop/navigation.go b/cointop/navigation.go index f6046b6..d8570eb 100644 --- a/cointop/navigation.go +++ b/cointop/navigation.go @@ -443,7 +443,7 @@ func (ct *Cointop) HighlightRow(pageRowIndex int) error { cy = h - (l - pageRowIndex) } } - log.Debug("HighlightRow idx:%v h:%v cy:%v oy:%v", pageRowIndex, h, cy, oy) + log.Debugf("HighlightRow idx:%v h:%v cy:%v oy:%v", pageRowIndex, h, cy, oy) ct.Views.Table.SetOrigin(ox, oy) ct.Views.Table.SetCursor(cx, cy) return nil