The code that outputs debugging information about the packets is probably stripped out for performance reasons in the release build.
This is done mostly by two things:
- conditional preprocessor directives that check against debug mode and generate appropriate code in that mode.
- linking against debug version of libraries.
Dropping those stuff is in fact, the primary purpose you are building a release version. You ain't gonna need debugging info so you won't be sacrificing performance for it. If you're really want to do so, then why don't you just ship the debug build [update: as noted in a comment, seems the license doesn't allow you to distribute software linked against debug libs]? It's the most similar configuration (you can't get more a config similar than identical, can you?)
