mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-22 00:38:03 -06:00
Add debug electron setting
This commit is contained in:
parent
504b79cb67
commit
09bc69df7a
@ -20,3 +20,6 @@ storage:
|
||||
|
||||
network:
|
||||
friends: []
|
||||
|
||||
electron:
|
||||
debug: false
|
||||
|
@ -7,3 +7,6 @@ webserver:
|
||||
database:
|
||||
host: 'localhost'
|
||||
port: 27017
|
||||
|
||||
electron:
|
||||
debug: false
|
||||
|
@ -16,7 +16,7 @@ function checkConfig () {
|
||||
'webserver.https', 'webserver.host', 'webserver.port',
|
||||
'database.host', 'database.port', 'database.suffix',
|
||||
'storage.certs', 'storage.uploads', 'storage.logs',
|
||||
'network.friends' ]
|
||||
'network.friends', 'electron.debug' ]
|
||||
const miss = []
|
||||
|
||||
for (const key of required) {
|
||||
|
@ -7,6 +7,7 @@ const spawn = require('electron-spawn')
|
||||
|
||||
const logger = require('../helpers/logger')
|
||||
|
||||
const electron_debug = config.get('electron.debug')
|
||||
let host = config.get('webserver.host')
|
||||
let port = config.get('webserver.port')
|
||||
let nodeKey = 'webtorrentnode' + port
|
||||
@ -57,13 +58,16 @@ function create (options, callback) {
|
||||
})
|
||||
|
||||
const webtorrent_process = spawn(pathUtils.join(__dirname, 'webtorrentProcess.js'), host, port, { detached: true })
|
||||
webtorrent_process.stderr.on('data', function (data) {
|
||||
// logger.debug('Webtorrent process stderr: ', data.toString())
|
||||
})
|
||||
|
||||
webtorrent_process.stdout.on('data', function (data) {
|
||||
// logger.debug('Webtorrent process:', data.toString())
|
||||
})
|
||||
if (electron_debug === true) {
|
||||
webtorrent_process.stderr.on('data', function (data) {
|
||||
logger.debug('Webtorrent process stderr: ', data.toString())
|
||||
})
|
||||
|
||||
webtorrent_process.stdout.on('data', function (data) {
|
||||
logger.debug('Webtorrent process:', data.toString())
|
||||
})
|
||||
}
|
||||
|
||||
webtorrent.app = webtorrent_process
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user