github.com/jackc/pgconn.PgError.Severity (field)

4 uses

	github.com/jackc/pgconn (current package)
		errors.go#L36: 	Severity         string
		errors.go#L56: 	return pe.Severity + ": " + pe.Message + " (SQLSTATE " + pe.Code + ")"
		pgconn.go#L801: 		Severity:         msg.Severity,

	github.com/jackc/pgconn/stmtcache
		lru.go#L97: 	isInvalidCachedPlanError := pgErr.Severity == "ERROR" &&