zest/base.logger

View on GitHub

Showing 6 of 6 total issues

Function Logger has 70 lines of code (exceeds 25 allowed). Consider refactoring.
Open

var Logger = function (options, group) {
    var logFunctions;
    var noOp = function () {
        return logFunctions;
    };
Severity: Major
Found in lib/index.js - About 2 hrs to fix

    Function exports has 70 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    module.exports = function (group, pattern, appenderOptions) {
        var format = require('../formatter')(group, pattern);
        var unLogged = [];
        var appending = false;
        var appendLog = function () {
    Severity: Major
    Found in lib/appenders/file.js - About 2 hrs to fix

      Function exports has 66 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      module.exports = function (group, pattern) {
          // normalize the passes pattern into a map
          var patternMap = {
          };
          // we populate placeholders in the pattern using the object keys
      Severity: Major
      Found in lib/formatter.js - About 2 hrs to fix

        Function exports has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
        Open

        module.exports = function (group, pattern) {
            // normalize the passes pattern into a map
            var patternMap = {
            };
            // we populate placeholders in the pattern using the object keys
        Severity: Minor
        Found in lib/formatter.js - About 2 hrs to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function profile has 33 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        Logger.prototype.profile = function (component, verbose) {
            var log = this;
            Object.keys(component).forEach(
                function (key) {
                    var oldFn;
        Severity: Minor
        Found in lib/index.js - About 1 hr to fix

          Function parse has 5 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              var parse = function (value, rpad, min, max, format) {
          Severity: Minor
          Found in lib/formatter.js - About 35 mins to fix
            Severity
            Category
            Status
            Source
            Language