TBR: v.io/jiri/profile: remove spurious printf.

Change-Id: I43c33aa039793d44bc0f73d96fb1fca8558c2e8c
diff --git a/profiles/commandline/driver.go b/profiles/commandline/driver.go
index e8cd02f..51436b9 100644
--- a/profiles/commandline/driver.go
+++ b/profiles/commandline/driver.go
@@ -12,7 +12,6 @@
 	"bytes"
 	"flag"
 	"fmt"
-	"os"
 	"strings"
 	"text/template"
 
@@ -320,11 +319,8 @@
 func fmtOutput(ctx *tool.Context, o string) string {
 	_, width, err := textutil.TerminalSize()
 	if err != nil {
-		fmt.Fprintf(os.Stderr, "err: %v\n", err)
 		width = 80
 	}
-	fmt.Fprintf(os.Stderr, "width %d\n", width)
-
 	if len(o) < width {
 		return o
 	}