(text)
| 1022 | |
| 1023 | // Used by XXXXX_DEBUG settings to output debug messages. |
| 1024 | function dbg(text) { |
| 1025 | // TODO(sbc): Make this configurable somehow. Its not always convenient for |
| 1026 | // logging to show up as errors. |
| 1027 | console.error.apply(console, arguments); |
| 1028 | } |
| 1029 | |
| 1030 | // end include: runtime_debug.js |
| 1031 | // === Body === |