// utils/logger.go package utils import "log" func LogError(scope string, err error) { log.Printf("[%s] %v", scope, err) }