From 236b7e8dd160be9215cc581b5da1e3ebff67c265 Mon Sep 17 00:00:00 2001 From: Jackson Tian Date: Tue, 12 Apr 2016 14:01:31 +0800 Subject: [PATCH] doc: doc-only deprecation for util.log() There are more powerful loggers in user land like `debug`, soft deprecate it. PR-URL: https://github.com/nodejs/node/pull/6161 Reviewed-By: James M Snell Reviewed-By: Brian White Reviewed-By: Evan Lucas --- doc/api/util.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/api/util.md b/doc/api/util.md index c059be8c0dd027..692c9b2e45c2bf 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -551,6 +551,8 @@ util.isUndefined(null) ## util.log(string) + Stability: 0 - Deprecated: Use a third party module instead. + Output with timestamp on `stdout`. require('util').log('Timestamped message.');