josdejong / svelte-jsoneditor

A web-based tool to view, edit, format, repair, query, transform, and validate JSON
https://jsoneditoronline.org
Other
820 stars 108 forks source link

Is there a way to disable debug messages? #253

Closed KiranMurthy-Au closed 1 year ago

KiranMurthy-Au commented 1 year ago

I see this in browser console window. Is there a way to disable debug messages?

Screenshot 2023-04-13 at 5 35 26 AM
josdejong commented 1 year ago

Yes, to turn on debugging output, enter the following in your browsers JavaScript console:

localStorage.debug="*"

Then reload the page.

To turn off debugging output, enter the following in your browsers JavaScript console:

delete localStorage.debug

Then reload the page.

(Debugging output is off by default)