File: debug.js

package info (click to toggle)
allow-html-temp 10.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 364 kB
  • sloc: javascript: 1,459; makefile: 25; sh: 8
file content (10 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (4)
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);
    }
  }
}