Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit b950e4c

Browse files
committed
Corrected typo in log output
1 parent 5a79f00 commit b950e4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/processor.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ module.exports = function(proto) {
476476

477477
// Handle output stream events
478478
outputStream.target.on('close', function() {
479-
self.logger.debug('Output stream closed, scheduling kill for ffmpgeg process');
479+
self.logger.debug('Output stream closed, scheduling kill for ffmpeg process');
480480

481481
// Don't kill process yet, to give a chance to ffmpeg to
482482
// terminate successfully first This is necessary because
@@ -489,7 +489,7 @@ module.exports = function(proto) {
489489
});
490490

491491
outputStream.target.on('error', function(err) {
492-
self.logger.debug('Output stream error, killing ffmpgeg process');
492+
self.logger.debug('Output stream error, killing ffmpeg process');
493493
var reportingErr = new Error('Output stream error: ' + err.message);
494494
reportingErr.outputStreamError = err;
495495
emitEnd(reportingErr, stdoutRing.get(), stderrRing.get());

0 commit comments

Comments
 (0)