We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2775814 commit 7f4cba8Copy full SHA for 7f4cba8
core/lib/utilities.js
@@ -31,9 +31,17 @@ const log = Object.assign({
31
*/
32
const debug = log.debug.bind(log);
33
34
+/**
35
+ * @func info
36
+ * @desc Coloured info log
37
+ * @param {*} msg - The variadic messages to log out.
38
+ * @return {void}
39
+ */
40
+const info = log.info.bind(log);
41
+
42
/**
43
* @func warning
- * @desc Coloured error log
44
+ * @desc Coloured warning log
45
* @param {*} e - The variadic messages to log out.
46
* @return {void}
47
@@ -62,6 +70,7 @@ const reportError = function (message) {
62
70
63
71
module.exports = {
64
72
debug,
73
+ info,
65
74
warning,
66
75
error,
67
76
log,
0 commit comments