Skip to content

Commit bafa40c

Browse files
committed
Cleanup logs
1 parent b44ab4d commit bafa40c

6 files changed

+18
-13
lines changed

guestprop.go

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ func GetGuestProperty(vm string, prop string) (string, error) {
3636
}
3737
out, err = Manage.runOut("guestproperty", "get", vm, prop)
3838
if err != nil {
39-
log.Print(err)
4039
return "", err
4140
}
4241
out = strings.TrimSpace(out)

guestprop_test.go

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ func TestGuestProperty(t *testing.T) {
2121
if err != nil {
2222
t.Fatal(err)
2323
}
24-
Debug("OK SetGuestProperty test_key=test_val")
24+
t.Logf("OK SetGuestProperty test_key=test_val")
2525

2626
if ManageMock != nil {
2727
ManageMock.EXPECT().isGuest().Return(false)
@@ -129,24 +129,24 @@ func TestWaitGuestProperties(t *testing.T) {
129129
}
130130

131131
props := "test_*"
132-
fmt.Printf("TestWaitGuestProperties(): will wait on '%s' for %d changes\n", props, left)
132+
t.Logf("TestWaitGuestProperties(): will wait on '%s' for %d changes\n", props, left)
133133
propsC, doneC, wg := WaitGetProperties(VM, props)
134134

135-
fmt.Printf("TestWaitGuestProperties(): waiting on: %T(%v)\n", propsC, propsC)
135+
t.Logf("TestWaitGuestProperties(): waiting on: %T(%v)\n", propsC, propsC)
136136
// for prop := range propsChan {
137137
ok := true
138138
for ; ok && left > 0; left-- {
139139
var prop GuestProperty
140-
fmt.Printf("TestWaitGuestProperties(): unstacking... (left=%d)\n", left)
140+
t.Logf("TestWaitGuestProperties(): unstacking... (left=%d)\n", left)
141141
prop, ok = <-propsC
142-
fmt.Printf("TestWaitGuestProperties(): unstacked: %+v (left=%d)\n", prop, left)
142+
t.Logf("TestWaitGuestProperties(): unstacked: %+v (left=%d)\n", prop, left)
143143
}
144-
fmt.Printf("TestWaitGuestProperties(): done...\n")
144+
t.Logf("TestWaitGuestProperties(): done...\n")
145145
doneC <- true
146-
fmt.Printf("TestWaitGuestProperties(): done... Ok\n")
146+
t.Logf("TestWaitGuestProperties(): done... Ok\n")
147147

148148
wg.Wait()
149-
fmt.Printf("TestWaitGuestProperties(): exiting\n")
149+
t.Logf("TestWaitGuestProperties(): exiting\n")
150150

151151
Teardown()
152152
}

log_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"fmt"
55
"log"
66
"os"
7+
"testing"
78
)
89

910
var logger = log.New(os.Stderr, "", 0)
@@ -15,6 +16,9 @@ func logLn(msg string) {
1516
}
1617

1718
func logF(format string, args ...interface{}) {
19+
if !testing.Verbose() {
20+
return
21+
}
1822
logLn(fmt.Sprintf(format, args...))
1923
}
2024

@@ -25,4 +29,5 @@ func init() {
2529
// }
2630
Debug = logF
2731
Debug("Using Verbose Log")
32+
Debug("testing.Verbose=%v", testing.Verbose())
2833
}

regexp_test.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package virtualbox
22

33
import (
4-
"log"
54
"os"
65
"regexp"
76
"testing"
@@ -20,7 +19,7 @@ func TestGetRegexp(t *testing.T) {
2019
re = regexp.MustCompile(reStr)
2120
}
2221
var match = re.FindStringSubmatch(str)
23-
log.Print("match:", match)
22+
t.Log("match:", match)
2423
if len(match) != 2 {
2524
t.Fatal("No match")
2625
}

vbcmd.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package virtualbox
33
import (
44
"bytes"
55
"errors"
6-
"log"
76
"os"
87
"os/exec"
98
"os/user"
@@ -46,10 +45,12 @@ func isSudoer() (bool, error) {
4645
if err != nil {
4746
return false, err
4847
}
48+
Debug("User: '%+v'", me)
4949
if groupIDs, err := me.GroupIds(); runtime.GOOS == "linux" {
5050
if err != nil {
5151
return false, err
5252
}
53+
Debug("groupIDs: '%+v'", groupIDs)
5354
for _, groupID := range groupIDs {
5455
if groupID == "sudo" {
5556
return true, nil
@@ -85,6 +86,7 @@ func (vbcmd command) path() string {
8586
func (vbcmd command) prepare(args []string) *exec.Cmd {
8687
program := vbcmd.program
8788
argv := []string{}
89+
Debug("Command: '%+v', runtime.GOOS: '%s'", vbcmd, runtime.GOOS)
8890
if vbcmd.sudoer && vbcmd.sudo && runtime.GOOS != "windows" {
8991
program = "sudo"
9092
argv = append(argv, vbcmd.program)

vbmgt_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func Setup(t *testing.T) {
3434
} else {
3535
t.Logf("Using real VM='%s'\n", VM)
3636
}
37-
t.Logf("Using Manage='%T', path='%v'", Manage, Manage.path())
37+
t.Logf("Using Manage='%+v' (type: '%T')", Manage, Manage)
3838
}
3939

4040
func Teardown() {

0 commit comments

Comments
 (0)