Merge "selenium: Remove debugging information for video recording"
This commit is contained in:
commit
bc9bc0d07f
1 changed files with 0 additions and 9 deletions
|
|
@ -81,15 +81,6 @@ function startVideo( ffmpeg, title ) {
|
|||
ffmpeg.stderr.on( 'data', ( data ) => {
|
||||
logBuffer( data, 'ffmpeg stderr: ' );
|
||||
} );
|
||||
ffmpeg.on( 'close', ( code, signal ) => {
|
||||
console.log( '\n\tVideo location:', videoPath, '\n' );
|
||||
if ( code !== null ) {
|
||||
console.log( `\tffmpeg exited with code ${code} ${videoPath}` );
|
||||
}
|
||||
if ( signal !== null ) {
|
||||
console.log( `\tffmpeg received signal ${signal} ${videoPath}` );
|
||||
}
|
||||
} );
|
||||
}
|
||||
return ffmpeg;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue