Substrings and memory leaks

Mistake

uuid := log[:36] // slices the string, but keeps the backing array

Fix

uuid := string([]byte(log[:36])) // copies the sub-string into a []byte
uuid := strings.Clone(log[:36]) // creates a new copy of the string

References