The build fails with:
```
../dnsdist-protobuf.cc: In member function ‘void DNSDistProtoBufMessage::serialize(std::string&) const’:
../dnsdist-protobuf.cc:205:7: error: ‘vinfolog’ was not declared in this scope
205 | vinfolog("Error while parsing the RRs from a response packet to add them to the protobuf message: %s", exp.what());
| ^~~~~~~~
```
because of a missing header.
Signed-off-by: Remi Gacogne <remi.gacogne@powerdns.com>
#include "base64.hh"
#include "dnsdist.hh"
#include "dnsdist-protobuf.hh"
+#include "dolog.hh"
#include "protozero.hh"
DNSDistProtoBufMessage::DNSDistProtoBufMessage(const DNSQuestion& dnsquestion) :