#905 closed enhancement (fixed)
[patch][cla] use FireBug's console.log more effectively
Reported by: | Owned by: | Dustin Machi | |
---|---|---|---|
Priority: | high | Milestone: | |
Component: | General | Version: | 0.3 |
Keywords: | Cc: | [email protected]… | |
Blocked By: | Blocking: |
Description
FireBug? provides the console.log function. When called directly with an object refrence, firebug creates a link to the object inspector which is very handy.
This patch does this :
- maps dojo.debug (and dojo.debugDeep) to console.log directly, so that objects are passed instead of strings (to enable object inspector links)
- maps dojo.shallowDebug to multiple console.log statements for
- for objects : shows the top level of propeties (with inspector links for objects)
- for arrays : shows each item in the array (with inspector links for objects)
Attachments (3)
Change History (8)
Changed 15 years ago by
Attachment: | FireBug.js.patch added |
---|
Changed 15 years ago by
Attachment: | test_debug_Firebug.html added |
---|
Changed 15 years ago by
Attachment: | dojo.js.patch added |
---|
modified trunk/dojo.js (the bootstrapper) to enable FireBug? if it is availible
comment:1 Changed 15 years ago by
Cc: | [email protected]… added |
---|---|
Owner: | changed from anonymous to Dustin Machi |
Dustin, you wrote the Firebug code right (I mean, the dojo code to connect to Firebug)? So can you do this patch?
comment:2 Changed 15 years ago by
Milestone: | → 0.4 |
---|
comment:3 Changed 15 years ago by
Summary: | Patch to use FireBug's console.log more effectively → [patch][cla] use FireBug's console.log more effectively |
---|
Note: See
TracTickets for help on using
tickets.
test file for FireBug?