Skip to content

Commit f6d8621

Browse files
committed
fix(debug): fixes #848 use console.error vs warning
1 parent 486c782 commit f6d8621

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/debug.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if (process.env.NODE_ENV !== 'production' && process.env.NODE_ENV !== 'test') {
1212
DEBUG = window.localStorage.debug
1313
} catch (e) {
1414
/* eslint-disable no-console */
15-
console.warning('Semantic-UI-React could not enable debug.')
15+
console.error('Semantic-UI-React could not enable debug.')
1616
console.error(e)
1717
/* eslint-enable no-console */
1818
}

0 commit comments

Comments
 (0)