class-logger icon indicating copy to clipboard operation
class-logger copied to clipboard

Does class-logger option "args" works with Node 18?

Open CyberT33N opened this issue 3 years ago • 0 comments

Disabling the args with boolean or object does not affect the log output in my terminal. Is it only for me? It still does display the args:

  • MyClass._checkIndexes -> done. Args: ...
@LogClass({
    include: {
        args: false
    }
})
class MyClass { /*.. Code here.. */ }

However, the classInstance option is working doe.

CyberT33N avatar Sep 24 '22 21:09 CyberT33N