Skip to content
This repository was archived by the owner on Nov 15, 2022. It is now read-only.

Debugging Code

Alexander Krause edited this page Jan 19, 2018 · 5 revisions

This page presents how one can enable and use debugging modes for the frontend and backend.

Frontend

JS Code Logging

Use debug statements, e.g., this.debug("my log message", myToBeLoggedObject); to log any information from your code. You must enable the logging in Google Chrome by passing the logging targets to the debugger. Open the Chrome Dev Tools (Ctrl + Shift + J in Windows) and insert one of the following commands into the console:

  1. debug.enable('route:visualization'); : Google Chrome will only log messages from the visualization route.
  2. debug.enable('route:*, component:landscape-rendering'); : Google Chrome will log messages from any route and the landscape-rendering component.
  3. debug.enable('*'); : Google Chrome will log executed log statement

JS Code Debugging

Clone this wiki locally