log creation of qlog files in interop client and server

This commit is contained in:
Marten Seemann
2020-04-14 18:42:24 +07:00
parent 80e39f5ed3
commit 7b126285ab

View File

@@ -42,6 +42,7 @@ func GetQLOGWriter() (func(connID []byte) io.WriteCloser, error) {
log.Printf("Failed to create qlog file %s: %s", path, err.Error())
return nil
}
log.Printf("Created qlog file: %s\n", path)
return utils.NewBufferedWriteCloser(bufio.NewWriter(f), f)
}, nil
}