File: debug.js

package info (click to toggle)
allow-html-temp 10.0.8-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 368 kB
  • sloc: javascript: 1,454; makefile: 25; sh: 7
file content (10 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
function consoleDebug(text, object) {
  if(options.debug == true) {
    if(object != undefined) {
      console.debug(text, object);
    }
    else {
      console.debug(text);
    }
  }
}