New debug mode:
Debug mode is no more triggered by the NODE_ENV value, but by testing the existance of a file in the plugin data directory.
This commit is contained in:
committed by
John Livingston
parent
f8b83defb5
commit
b4dabfeeb9
@ -1,6 +1,7 @@
|
||||
import type { RegisterServerOptions } from '@peertube/peertube-types'
|
||||
import { diagBackend } from './backend'
|
||||
import { TestResult, newResult } from './utils'
|
||||
import { diagDebug } from './debug'
|
||||
import { diagProsody } from './prosody'
|
||||
import { diagVideo } from './video'
|
||||
|
||||
@ -9,6 +10,8 @@ export async function diag (test: string, options: RegisterServerOptions): Promi
|
||||
|
||||
if (test === 'backend') {
|
||||
result = await diagBackend(test, options)
|
||||
} else if (test === 'debug') {
|
||||
result = await diagDebug(test, options)
|
||||
} else if (test === 'webchat-video') {
|
||||
result = await diagVideo(test, options)
|
||||
} else if (test === 'prosody') {
|
||||
|
Reference in New Issue
Block a user