From 9e3472776b9c99a83f453b94fd5304742fdc4179 Mon Sep 17 00:00:00 2001 From: Sami Alajrami Date: Mon, 19 Mar 2018 11:53:51 +0100 Subject: [PATCH] adding log enhancment. --- utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.go b/utils.go index fb33c8eb..0a3a84ba 100644 --- a/utils.go +++ b/utils.go @@ -34,7 +34,7 @@ func fromTOML(file string, s *state) (bool, string) { if _, err := toml.DecodeFile(file, s); err != nil { return false, err.Error() } - return true, "Parsed [[ " + file + " ]] successfully and found [ " + strconv.Itoa(len(s.Apps)) + " ] apps." + return true, "INFO: Parsed [[ " + file + " ]] successfully and found [ " + strconv.Itoa(len(s.Apps)) + " ] apps." }