```typescript
import { log } from "node:node__util.d.ts";
```
log(string: string): void
Deprecated
Since v6.0.0 - Use a third party module instead.
The `util.log()` method prints the given `string` to `stdout` with an included
timestamp.
```js
import util from 'node:util';
util.log('Timestamped message.');
```