Never silently ignore errors:
// Bad: error ignored
result, _ := riskyOperation()
// Good: error handled
result, err := riskyOperation()
if err != nil {
log.Printf("warning: %v", err)
}
If you must ignore an error, at least log it. Silent failures create bugs that are hard to diagnose.