make plugin errors more visible in console

Massimo Melina committed Apr 2, 2025 at 20:23 UTC aa7e57923eb0e29514d60d407f3b5f36c3927602
1 file changed +1 -1
src/plugins.ts
+1 -1
@@ -607,7 +607,7 @@ function setError(id: string, error: string) {
607 info.error = error
608 events.emit('pluginUpdated', info)
609 if (!error) return
610 - console.log(`plugin error: ${id}:`, error)
610 + console.warn(`plugin error: ${id}:`, error)
611 return true
612 }
613