How to access vlog files of badger

When running an app using badger with -race I get continuously race warnings. I would like to understand the issue and would love to read the badger vlog file.
How can I read them?
Thanks

@fpessolano badger is safe for concurrent writes. db.Update method can be used to write data from different threads. Can you tell us more details, how are you writing data to Badger?

I see I posted also on GitHub, I am revisit all code first and will reply on github. I would still like to know how to read the vlog files if possible.

@fpessolano You can try hexdump -C *.vlog to see the contents of the vlog file.

2 Likes