Merge "selenium: Remove debugging information for video recording"

This commit is contained in:
jenkins-bot 2021-06-17 11:48:13 +00:00 committed by Gerrit Code Review
commit bc9bc0d07f

View file

@ -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;
}