I want to separate the debug outputs from production ones by defining a variable that can be used throughput the module. It cannot be defined in environment. Any suggestions for globals reused across classes in modules? Additionally is there a way to configure this variable flag for telling appengine that dont use this code.
|
|
|
|
|
|
|
Have a look at the logging module, which is fully supported by Google App Engine. You can specify logging levels such as debug, warning, error, etc. They will show up in the dev server console, and will also be stored in the request log. If you're after executing specific code only when running the dev server, you can do this:
The SERVER_SOFTWARE variable is always set by Google App Engine. As for module specific variables; modules are objects and can have values just as any other object:
|
||||||
|
|
|
All module-level variables are global to all classes in the module. Here's my file:
A single, module-level |
||
|
