From 338953d1729cbe92bfa0f587c1e109faab79f1e8 Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Fri, 27 Dec 2019 09:51:37 -0500 Subject: [PATCH] debug format --- runtime/ui/key/binding.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/ui/key/binding.go b/runtime/ui/key/binding.go index 69fe007..76ffa31 100644 --- a/runtime/ui/key/binding.go +++ b/runtime/ui/key/binding.go @@ -60,7 +60,7 @@ func NewBindingFromConfig(gui *gocui.Gui, influence string, configKeys []string, for _, configKey := range configKeys { bindStr := viper.GetString(configKey) if bindStr == "" { - logrus.Debug("skipping keybinding '%s' (no value given)", configKey) + logrus.Debugf("skipping keybinding '%s' (no value given)", configKey) continue } logrus.Debugf("parsing keybinding '%s' --> '%s'", configKey, bindStr)