You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ma...@apache.org on 2016/04/28 02:09:39 UTC

[12/32] incubator-mynewt-newt git commit: Always print a message when starting loading target.

Always print a message when starting loading target.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/commit/6897b055
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/tree/6897b055
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/diff/6897b055

Branch: refs/heads/master
Commit: 6897b05506d73d64565c67f9eea42ce3d64d7d44
Parents: edccbe6
Author: Marko Kiiskila <ma...@runtime.io>
Authored: Thu Mar 31 12:39:47 2016 -0700
Committer: Marko Kiiskila <ma...@runtime.io>
Committed: Fri Apr 1 20:13:07 2016 -0700

----------------------------------------------------------------------
 newt/builder/load.go | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-newt/blob/6897b055/newt/builder/load.go
----------------------------------------------------------------------
diff --git a/newt/builder/load.go b/newt/builder/load.go
index a30372e..3d32d8b 100644
--- a/newt/builder/load.go
+++ b/newt/builder/load.go
@@ -58,7 +58,8 @@ func (b *Builder) Load() error {
 	downloadCmd := fmt.Sprintf("%s %s %s %s",
 		downloadScript, bspPath, binBaseName, featureString)
 
-	util.StatusMessage(util.VERBOSITY_VERBOSE, "Loading image with: %s\n",
+	util.StatusMessage(util.VERBOSITY_DEFAULT, "Loading image\n")
+	util.StatusMessage(util.VERBOSITY_VERBOSE, "Load command: %s\n",
 		downloadCmd)
 	rsp, err := util.ShellCommand(downloadCmd)
 	if err != nil {