@vpmedia/simplify 1.35.0 → 1.36.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vpmedia/simplify",
3
- "version": "1.35.0",
3
+ "version": "1.36.0",
4
4
  "description": "@vpmedia/simplify",
5
5
  "author": "Andras Csizmadia <andras@vpmedia.hu> (www.vpmedia.hu)",
6
6
  "license": "MIT",
@@ -4,11 +4,11 @@ import { formatLogMessage } from './util.js';
4
4
 
5
5
  const CONSOLE_FUNCTIONS = [
6
6
  null, // silent
7
- console.debug, // debug
8
- console.info, // info
9
- console.warn, // warning
10
- console.error, // error
11
7
  console.error, // fatal
8
+ console.error, // error
9
+ console.warn, // warning
10
+ console.info, // info
11
+ console.debug, // debug
12
12
  ];
13
13
 
14
14
  export class ConsoleLogHandler extends AbstractLogHandler {