BySlin / umi-plugin-electron-builder

umi的electron插件
MIT License
157 stars 25 forks source link

可以去掉 log 时 Electron 的蓝框吗 #50

Closed arvinxx closed 2 years ago

arvinxx commented 3 years ago

如下图,这个蓝框非常影响调试体验… image

看了下代码大概是这一行?

https://github.com/BySlin/umi-plugin-electron-builder/blob/main/src/compile/index.ts#L99

能否能给个配置项去掉这个日志

BySlin commented 3 years ago

已增加logProcess配置

    logProcess(log: string, type: LogType) {
      if (type === 'normal') {
        console.log(log);
      } else if (type === 'error') {
        console.error(log);
      }
    }