TLS support for TCP logger

This commit is contained in:
Christian Schwarz
2017-09-24 14:34:50 +02:00
parent 0cb5ffb48b
commit c1a5b04065
9 changed files with 171 additions and 2 deletions
+5 -1
View File
@@ -22,10 +22,14 @@ func TestSampleConfigsAreParsedWithoutErrors(t *testing.T) {
for _, p := range paths {
_, err := ParseConfig(p)
c, err := ParseConfig(p)
if err != nil {
t.Errorf("error parsing %s:\n%+v", p, err)
}
t.Logf("file: %s", p)
t.Log(pretty.Sprint(c))
}
}