Replace universe-log with pino in renderer package
- Fix CSP violation caused by universe-log using Function() constructor for environment detection (equivalent to eval) - Fix broken object logging where objects passed as arguments were silently dropped from output - Fix incorrect console method usage (all logs went to console.error) universe-log (v5.2.0) has been abandoned since August 2019 and has no CSP-compatible version. Pino is already used elsewhere in denser and provides proper CSP-safe environment detection using typeof checks. This also reduces bundle size by ~11KB (universe-log ~15KB -> pino ~4KB). Fixes #788