diff options
author | Clément Bénier <clement.benier@iot.bzh> | 2018-08-21 17:56:10 +0200 |
---|---|---|
committer | Clément Bénier <clement.benier@iot.bzh> | 2018-08-21 17:56:10 +0200 |
commit | b1d091a8c6b2269601a1683e963d0e382cd0f7f6 (patch) | |
tree | ec60f14ec47211e929d144bde128fbbff5f7c0dc /test/config_test.go | |
parent | 4192072863ac0997b0c3cb4131ea913e6f85f83e (diff) |
test logs: hide log
logs are printable with VERBOSE != ""
Change-Id: I170aed2e73db673ba6276410b1dddd3389239457
Signed-off-by: Clément Bénier <clement.benier@iot.bzh>
Diffstat (limited to 'test/config_test.go')
-rw-r--r-- | test/config_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/config_test.go b/test/config_test.go index da56188..2b95e85 100644 --- a/test/config_test.go +++ b/test/config_test.go @@ -42,7 +42,7 @@ func CheckIP(ipconfig string) bool { func TestConfig(t *testing.T) { var cfg xsapiv1.APIConfig assert.Nil(t, HTTPCli.Get("/config", &cfg)) - t.Logf("Config is %v", cfg) + Debugf(t, "Config is %v", cfg) re := regexp.MustCompile("^[0-9a-z]+-[0-9a-z]+-[0-9a-z]+-[0-9a-z]+-[0-9a-z]+$") assert.True(t, re.MatchString(cfg.ServerUID)) //ID |