From 7609df9d4f39dec83c633c23833ab8dfd8103ec1 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 26 May 2018 15:21:15 -0400 Subject: Support async/await by including ES2017 This required adjusting the module loading system. --- util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util.go') diff --git a/util.go b/util.go index 5878d87b9..11c4514cf 100644 --- a/util.go +++ b/util.go @@ -9,7 +9,7 @@ import ( func logDebug(format string, v ...interface{}) { // Unless the debug flag is specified, discard logs. if *flagDebug { - fmt.Printf(format+"\n", v) + fmt.Printf(format+"\n", v...) } } -- cgit v1.2.3