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 aa29cc1 commit 3ba9ad8Copy full SHA for 3ba9ad8
src/utils/debug.js
@@ -52,7 +52,7 @@ function debug(message, obj) {
52
53
if (obj) {
54
// Browser console can print directly objects
55
- const toPrint = isBrowser() ? JSON.stringify(obj) : obj;
+ const toPrint = !isBrowser() ? JSON.stringify(obj) : obj;
56
57
// eslint-disable-next-line no-console
58
console.log(toPrint);
0 commit comments