Skip to content

Commit

Permalink
filter browser logging by level of LOG
Browse files Browse the repository at this point in the history
Additional fix to the next bug:
filter browser logging by level  ([35965d9](karma-runner@35965d9)), closes [karma-runner#2228](karma-runner#2228)
otherwise console.log ignore doesn't work with 
    browserConsoleLogOptions: {
        level: 'debug',
        terminal: true
    }
  • Loading branch information
blackswanny authored Jan 17, 2017
1 parent 99d647b commit 52b5151
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ exports.LOG_ERROR = 'ERROR'
exports.LOG_WARN = 'WARN'
exports.LOG_INFO = 'INFO'
exports.LOG_DEBUG = 'DEBUG'
exports.LOG_LOG = 'LOG'
exports.LOG_PRIORITIES = [
exports.LOG_DISABLE,
exports.LOG_ERROR,
exports.LOG_WARN,
exports.LOG_INFO,
exports.LOG_DEBUG,
exports.LOG_DISABLE
exports.LOG_LOG
]

// Default patterns for the pattern layout.
Expand Down

0 comments on commit 52b5151

Please sign in to comment.