diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-11-27 09:55:13 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-27 09:55:13 +0800 |
commit | 60c1b59a97379753889b693460ada18b45d2beea (patch) | |
tree | c2238c8eeb27237e3199274b6d32fac03bac3f72 /core/utils.go | |
parent | 6d95559bf7eb62e6c114ca4d4040c44ffd553629 (diff) | |
download | tangerine-consensus-60c1b59a97379753889b693460ada18b45d2beea.tar.gz tangerine-consensus-60c1b59a97379753889b693460ada18b45d2beea.tar.zst tangerine-consensus-60c1b59a97379753889b693460ada18b45d2beea.zip |
core: Fix stuffs (#342)
Diffstat (limited to 'core/utils.go')
-rw-r--r-- | core/utils.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/utils.go b/core/utils.go index 4e9cfdc..441aac1 100644 --- a/core/utils.go +++ b/core/utils.go @@ -61,7 +61,7 @@ func Debugf(format string, args ...interface{}) { // Debugln is like fmt.Println, but only output when we are in debug mode. func Debugln(args ...interface{}) { if debug { - fmt.Println(args) + fmt.Println(args...) } } |