Skip to content

Instantly share code, notes, and snippets.

@jheise
Last active June 4, 2022 18:33
Show Gist options
  • Save jheise/a4d02a5b562d3b51a74476011ac41244 to your computer and use it in GitHub Desktop.
Save jheise/a4d02a5b562d3b51a74476011ac41244 to your computer and use it in GitHub Desktop.
func LogRecord(r Record) error {
r_json, err := json.Marshal(r)
if err != nil {
return err
}
logger.Println(string(r_json))
return nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment