Created
January 21, 2015 09:16
-
-
Save scizers/6b5ace77fd1529b2a3b1 to your computer and use it in GitHub Desktop.
morgan version > 1.4.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var rejectFolders = ['css', 'bower_components' , 'js', 'fonts' , 'assets'] | |
app.use(morgan('tiny', { | |
skip: function (req, res) { | |
if(rejectFolders.indexOf(req.url.split('/')[1]) != -1 ){ | |
return true | |
} else { | |
return false | |
} | |
} | |
})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment