| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 6cf20d5 commit e96cd25
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1313,6 +1313,9 @@ The [`util.isUndefined()`][] API is deprecated. | |||
| 1313 | 1313 | ||
| 1314 | 1314 | <!-- YAML | |
| 1315 | 1315 | changes: | |
| 1316 | + - version: REPLACEME | ||
| 1317 | + pr-url: https://github.com/nodejs/node/pull/50488 | ||
| 1318 | + description: Runtime deprecation. | ||
| 1316 | 1319 | - version: v6.12.0 | |
| 1317 | 1320 | pr-url: https://github.com/nodejs/node/pull/10116 | |
| 1318 | 1321 | description: A deprecation code has been assigned. | |
@@ -1321,7 +1324,7 @@ changes: | |||
| 1321 | 1324 | description: Documentation-only deprecation. | |
| 1322 | 1325 | --> | |
| 1323 | 1326 | ||
| 1324 | - Type: Documentation-only | ||
| 1327 | + Type: Runtime | ||
| 1325 | 1328 | ||
| 1326 | 1329 | The [`util.log()`][] API is deprecated. | |
| 1327 | 1330 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -446,7 +446,10 @@ module.exports = { | |||
| 446 | 446 | 'Please use `arg === null || ' + | |
| 447 | 447 | '(typeof arg !== "object" && typeof arg !== "function")` instead.', | |
| 448 | 448 | 'DEP0054'), | |
| 449 | - log: deprecate(log, 'The `util.log API is deprecated.', 'DEP0059'), | ||
| 449 | + log: deprecate(log, | ||
| 450 | + 'The `util.log API is deprecated. ' + | ||
| 451 | + 'Please use console.log() with a custom formatter or a third-party logger instead.', | ||
| 452 | + 'DEP0059'), | ||
| 450 | 453 | promisify, | |
| 451 | 454 | stripVTControlCharacters, | |
| 452 | 455 | toUSVString, | |
| Back | FazBrowse Home | New Git URL |
0 commit comments