close
Warning:
Can't synchronize with repository "(default)" (Unsupported version control system "svn": No module named svn). Look in the Trac log for more information.
- Timestamp:
-
Aug 4, 2008, 4:05:17 PM (16 years ago)
- Author:
-
cmlenz
- Comment:
-
Notes about logging
Legend:
- Unmodified
- Added
- Removed
- Modified
-
v5
|
v6
|
|
64 | 64 | See ConfigOptions for a list of options made available by the framework, in addition to any custom options your application may support. |
65 | 65 | |
| 66 | == Logging == |
| 67 | |
| 68 | The development server automatically sets up logging for you, with log messages being written to `stderr` (so they should just show up on the console where you started the server). The verbosity level of the log messages can be controlled with the command-line options `--verbose`/`-v` (for debug-level logging) and `--quiet`/`-q` (for error-level logging). The default is info-level logging. |
| 69 | |
| 70 | If `simplejson` is installed, the development server also automatically enables [wiki:FirePHP] support for directing request-related log messages to the [http://www.getfirebug.com/ Firebug console] in the browser. |
| 71 | |
66 | 72 | == Automatic Reloading == |
67 | 73 | |