Skip to content

Commit

Permalink
replace console.log by process.stdout.write
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmo16 committed Nov 12, 2019
1 parent cdbd3c5 commit 012911d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transcription_api/src/controllers/transcription.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ let uploadAudioFile = function(bucketName, audio, next) {
}

gstorage.createBucket(bucketName, function(err) {
console.log('create bucket');
process.stdout.write('create bucket\n');
return callback(err);
});
},
Expand Down

0 comments on commit 012911d

Please sign in to comment.