forked from Kozea/pygal
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:Kozea/pygal
- Loading branch information
Showing
3 changed files
with
50 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/usr/bin/env python3 | ||
# This file is part of pygal | ||
# | ||
# A python svg graph plotting library | ||
# Copyright © 2012 Kozea | ||
# | ||
# This library is free software: you can redistribute it and/or modify it under | ||
# the terms of the GNU Lesser General Public License as published by the Free | ||
# Software Foundation, either version 3 of the License, or (at your option) any | ||
# later version. | ||
# | ||
# This library is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | ||
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more | ||
# details. | ||
# | ||
# You should have received a copy of the GNU Lesser General Public License | ||
# along with pygal. If not, see <http://www.gnu.org/licenses/>. | ||
from cabaret import create_app | ||
from flipflop import WSGIServer | ||
import logging | ||
app = create_app() | ||
|
||
from log_colorizer import make_colored_stream_handler | ||
handler = make_colored_stream_handler() | ||
app.logger.handlers = [] | ||
app.logger.addHandler(handler) | ||
import werkzeug | ||
werkzeug._internal._log('debug', '<-- I am with stupid') | ||
logging.getLogger('werkzeug').handlers = [] | ||
logging.getLogger('werkzeug').addHandler(handler) | ||
|
||
handler.setLevel(logging.DEBUG) | ||
app.logger.setLevel(logging.DEBUG) | ||
logging.getLogger('werkzeug').setLevel(logging.DEBUG) | ||
|
||
WSGIServer(app).run() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters