| The logs part made no sense, at least as I've always seen GDPR interpreted. It depends on what goes in the logs. If logs were exempt, it'd be really easy to just ignore GDPR by sticking everything in logs. There is no magical GDPR fairy that prevents you from needing to comply with deletion requests because you've made your data formats awkward and hard to track/trace. There are nice articles about how to anonymize log files so they don't need to contain identifiable information. For example, what is generally okay is storing part of an IP. If I just store the odd digits of the IP: 1) I'm probably okay for not being able to identify individuals. 2) I can do most analytics without issues. Unless I have bazillions of visitors, the identifiers are unique. For nitpickers: Odd digits is a dumb hash for illustrative purposes. In practice, I'd run the IP through SHA, and store just the first few bytes -- enough that visitors are unique most of the time in my log files, but not enough to be able to meaningfully map back to a person. |