Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions lib/private/multipart.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,18 @@ module.exports = function toParseMultipartHTTPRequest(options) {
// If parser emits `warning`, also emit it on `req` so it can be captured
// by your app. When NODE_ENV != 'production', if `req._sails` exists, this
// will attempt to log a message to the console using your configured logger.
// If this doesn't work, it logs a message. In production, no warnings are emitted.
if (process.env.NODE_ENV !== 'production') {
parser.on('warning', function(msg) {
// If this doesn't work, it logs a message.
parser.on('warning', function(msg) {
req.emit('warning', msg);
if (process.env.NODE_ENV !== 'production') {
if (req._sails) {
try {
req._sails.log.verbose(msg);
} catch (unusedErr) {}
} else {
debug(msg);
}
});//œ
}//fi

}//fi
});//œ
};
};