Data race found but it does not print a report

When the race detector finds a data race in the program should it prints a report?
My program executes succesfully without any lugs, but when exiting, only pritns

Found 1 data race(s)
exit status 66

Can it show me at which place of the code it happens?

1 Like

Hi, @cinematik, Check out the article about the data race detector here: https://golang.org/doc/articles/race_detector.html

It shows how to run the detector and get traces.

2 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.