Skip to content

Commit 012911d

Browse files
committed
replace console.log by process.stdout.write
1 parent cdbd3c5 commit 012911d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

transcription_api/src/controllers/transcription.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ let uploadAudioFile = function(bucketName, audio, next) {
8484
}
8585

8686
gstorage.createBucket(bucketName, function(err) {
87-
console.log('create bucket');
87+
process.stdout.write('create bucket\n');
8888
return callback(err);
8989
});
9090
},

0 commit comments

Comments
 (0)