mentie 0.2.25 → 0.2.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -155,7 +155,7 @@ log.warn = function( ...messages ) {
155
155
  annotate_messages( messages )
156
156
 
157
157
  // Log the messages
158
- console.warn( ...messages )
158
+ console.warn( '⚠️ ', ...messages )
159
159
 
160
160
  }
161
161
 
@@ -176,7 +176,7 @@ log.error = function( ...messages ) {
176
176
  if( !dev || !should_log ) return
177
177
 
178
178
  // Log the messages if the loglevel matches
179
- console.error( ...messages )
179
+ console.error( '🚨 ', ...messages )
180
180
  console.trace()
181
181
 
182
182
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mentie",
3
- "version": "0.2.25",
3
+ "version": "0.2.26",
4
4
  "description": "Mentor's toolbelt",
5
5
  "type": "module",
6
6
  "main": "index.js",