File: stringnames.py

package info (click to toggle)
python-daiquiri 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 240 kB
  • sloc: python: 888; makefile: 5
file content (8 lines) | stat: -rw-r--r-- 197 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
import logging

import daiquiri

daiquiri.setup(level=logging.INFO, outputs=("stdout", "stderr"))

logger = daiquiri.getLogger(__name__)
logger.info("It works and logs to both stdout and stderr!")