diff options
author | Chad Versace <chad.versace@linux.intel.com> | 2014-06-27 09:33:56 -0700 |
---|---|---|
committer | Chad Versace <chad.versace@linux.intel.com> | 2014-06-27 10:48:00 -0700 |
commit | decc1ab4f9d424d9eb9e8be1d5382c327606c533 (patch) | |
tree | fc7ec9114834001a10743e098671fc039b417e85 | |
parent | 6d8a020f09e4e741be88e6b2f4f5caa1847844b5 (diff) |
registry/gl: Oops. Disable debug logging by default
I forgot to disable debug logging before committing ac1f382d. You can
manually enable logging with the [-d|--debug] option to the
gen_dispatch.py script.
Signed-off-by: Chad Versace <chad.versace@linux.intel.com>
-rw-r--r-- | registry/gl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/registry/gl.py b/registry/gl.py index 170360ebd..e8d6fd154 100644 --- a/registry/gl.py +++ b/registry/gl.py @@ -35,7 +35,7 @@ from copy import copy, deepcopy # Export 'debug' so other Piglit modules can easily enable it. -debug = True +debug = False def _log_debug(msg): |