Function log

  • The util.log() method prints the given string to stdout with an included timestamp.

    const util = require('util');

    util.log('Timestamped message.');

    Deprecated

    Since v6.0.0 - Use a third party module instead.

    Parameters

    • string: string

    Returns void

  • The util.log() method prints the given string to stdout with an included timestamp.

    const util = require('util');

    util.log('Timestamped message.');

    Deprecated

    Since v6.0.0 - Use a third party module instead.

    Parameters

    • string: string

    Returns void

Generated using TypeDoc