vvverbose: function()

in src/VerboseLog.js [40:47]


    vvverbose: function () {
      if (Verbosity >= 3) {
        const args = [...arguments].map((arg) =>
          typeof arg === 'function' ? arg() : arg,
        );
        console.log.apply(null, [Tag, category, ...args]);
      }
    },